Hi,
Is there anyway to link a website from vb.net windows forms? I want to give a url in a click event of a button. How can I?
Printable View
Hi,
Is there anyway to link a website from vb.net windows forms? I want to give a url in a click event of a button. How can I?
try this one.Quote:
Originally Posted by haihems
VB Code:
Process.Start("www.google.com")
:thumb:VB Code:
Dim oProcess As Process oProcess.Start("http://www.vbforums.com/forumdisplay.php?f=25")
Cool....Thanks :cool: