I need to open notepad and write my results from my macro to it. I want to open notepad and write to it, and have the user review and if he or she wants to save it then save it wherever they like. Instead of writing to it and saving on the computer all in the code.
Thanks
Use the following code to open notepad and type into it:
Dim myApp As String
myApp = Shell("Notepad", vbNormalFocus)
SendKeys "test", True