display word file
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
how to display a word file as another application on a button click event www
-
how to display a word file as another application on a button click event www
Use the
Process
andProcessStartInfo
classes in your buttonClick
event handler to launch the.DOC
file:Dim procStartInfo As New ProcessStartInfo(_fullPathToWordDOCFile_) procStartInfo.UseShellExecute = True Process.Start(procStartInfo)
RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome