BDRichardson
Programmer
Have any of you clever people got any ideas how I could send some text, like a message, to Notepad? I need to leave to leave some text in Notepad when my program finishes/
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim sw As New System.IO.StreamWriter(Application.StartupPath & "\sample.txt")
sw.Write("This is the text you want to show in Notepad.")
sw.Close()
Dim p As New System.Diagnostics.Process
p.StartInfo.FileName = Application.StartupPath & "\sample.txt"
p.Start()