
Signature
Chad Z. Hower
Microsoft Regional Director
"Programming is an art form that fights back"
http://www.KudzuWorld.com/
Need a professional technical speaker at your event?
http://www.woo-hoo.net
Thanks,
I tried
System.Diagnostics.Process pr = new System.Diagnostics.Process();
pr.StartInfo.FileName = "iexplore";
pr.StartInfo.Arguments =
"C:/SmartClient/WebHelp_WithTOC/index.htm#mergedProjects/ProductA/ProductA_Form1.htm";
pr.Start();
This works. Though i was looking for a neater solution where there is
no need to call 'iexplore' explicitly. Is there no way to display a url
on the default browser?
Thanks,
> > How can i launch this url in a new instance of IE?
>
[quoted text clipped - 7 lines]
> Need a professional technical speaker at your event?
> http://www.woo-hoo.net
Marius Groenendijk - 23 Jan 2007 09:28 GMT
Hi there,
You'd have to convert your complex URL into an escaped URL. This
does the trick:
Dim theUri As System.Uri = New System.Uri( yourVeryComplexString )
And this'll start the default browser.
Diagnostics.Process.Start( theUri.AbsoluteUri() )
HTH,
Marius.
> Thanks,
>
[quoted text clipped - 26 lines]
>> Need a professional technical speaker at your event?
>> http://www.woo-hoo.net