Whats wrong with that code?
VB Code:
Shell ("Notepad.exe") & App.Path & "\Help.txt, vbMaximizedFocus"
Im trying to open Help.txt from the folder which my application is using notepad. But that says file could not be found.
Printable View
Whats wrong with that code?
VB Code:
Shell ("Notepad.exe") & App.Path & "\Help.txt, vbMaximizedFocus"
Im trying to open Help.txt from the folder which my application is using notepad. But that says file could not be found.
you have "" symbols in the wrong places ( eg; after the vbMaximizedFocus ) try this....
VB Code:
Shell "Notepad.exe " & App.Path & "\Help.txt", vbMaximizedFocus
Perfect thanks;)