Shell NotePad

How can I Shell to Notepad.exe and have Notepad load c:\test.txt

Answer this question

Shell NotePad

  • Rumen Yankov

    Dim ps as System.Diagnostics.Process

    You can also use Process.Start to open files in their native applications

    ps = Process.Start("C:\test.text")



  • Shell NotePad