Open notepad from within a Access form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to open notepad from within a form. Not to sure
how to do this. Any help would be appreciated.

Thanks Tom
 
Hello Tom,

Look into the ShellExecute function. This will do what you want. Doing a
search in google newsgroups will definatly return a lot of results.

HTH,

Neil.
 
If the .txt extensions will open the file via notepad..then just use:

application.FollowHyperlink "c:\my data\test.txt"
 
Back
Top