CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Nov 2002
    Posts
    34

    Question opening files with default application

    Hi,

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

    Thanks

  2. #2
    Join Date
    Oct 2002
    Posts
    34
    As for me I want to know how to open a word file from VB.NET.

    Thanks

    Moon
    Have a nice day! (^_^)

  3. #3
    Join Date
    Jan 2003
    Location
    London/Moscow
    Posts
    60
    Got It
    Code:
    Dim NewProcess As Process = New Process()
    NewProcess.Start(strMyfilePath)

  4. #4
    Join Date
    Oct 2002
    Posts
    34
    It works!
    Thank you very much!

    Moon
    Have a nice day! (^_^)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured