if I have a TEXT file..I want to open it by Notepad after clicked a button in VB..
how can I do so??
which control should I use?
Thank you
Printable View
if I have a TEXT file..I want to open it by Notepad after clicked a button in VB..
how can I do so??
which control should I use?
Thank you
use the Shell function:
shell "notepad.exe " & yourfilePath
or use the ShellExecute API