Hi,
how is it possible to open a file with its default application? for example htm file using iexplorer, txt with notepad?
Thanks
Printable View
Hi,
how is it possible to open a file with its default application? for example htm file using iexplorer, txt with notepad?
Thanks
As for me I want to know how to open a word file from VB.NET.
Thanks
Moon
Got It
Code:Dim NewProcess As Process = New Process()
NewProcess.Start(strMyfilePath)
It works!
Thank you very much!
Moon