Need help?[TUT] How to Make a button or label open e webpage [TUT] - MPGH - MultiPlayer Game Hacking & Cheats
[TUT] How to Make a button or label open e webpage [TUT]
Posts 1–4 of 4 · Page 1 of 1
[TUT] How to Make a button or label open e webpage [TUT]
just put this under the click event
Code:
Dim webAddress As String = "http://www.mpgh.net" 'change to whatever website you like
Process.Start(webAddress)
Code:
Process.Start("http://mpgh.net")
Is much easier for the choobies!
Or simplily add a textbox and this code:
Code:
process.start("http://" + textbox1.text)
lol. I guess there are some people who don't know how to do this. and on some computers Process.start doesnt work. you would need System.Diagnostics.Process.Start
Originally Posted by stevethehacker
lol. I guess there are some people who don't know how to do this. and on some computers Process.start doesnt work. you would need System.Diagnostics.Process.Start
You need System.Diagnostics.Process.Start on older OS i think!