Click to See Complete Forum and Search --> : opening files with default application


ilk
January 23rd, 2003, 05:38 PM
Hi,

how is it possible to open a file with its default application? for example htm file using iexplorer, txt with notepad?

Thanks

MoonNight
January 24th, 2003, 07:32 AM
As for me I want to know how to open a word file from VB.NET.

Thanks

Moon

bratuha
January 24th, 2003, 07:35 AM
Got It

Dim NewProcess As Process = New Process()
NewProcess.Start(strMyfilePath)

MoonNight
January 24th, 2003, 07:39 AM
It works!
Thank you very much!

Moon