Open external file

  • Thread starter Thread starter Guest
  • Start date Start date
Xero,

Can you explain for what is for you an external file. Is that a file that is
not on this planet or something?

And with what do you want to open it?

Cor
 
When user clicks a menu item, I want to launch IE and display a *.htm file.
Thanks again.

Xero
 
Jeff,

You can set in your click event this
\\\
im p As New Process
Dim pi As New ProcessStartInfo
pi.FileName = "http://msdn.microsoft.com"
pi.UseShellExecute = True
p.StartInfo = pi
p.Start()
////

I hope this helps?

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top