Visual Basic 2008 HelpOk, so i made a button with a name, for my next release :P and it says "MPGH" I want mpgh.net to open up when i press that. How can i do that? ps im new to visual basic. just started 5 hours ago.
Originally Posted by callenbs Add This Inbetween The Button Code. System.Diagnostics.Process.Start("http://www.yourwebsite.com") danmm you !!!
Originally Posted by callenbs Lmao. When I went to post. it didnt even show your post. lol ok i was pulling out my book of coding lol
ty, btw wats ur book of coding called?? also is it possible to insert like a a string from cmd coding Like: @echo Pwned! start start start start pause @echo How was That? pause
Originally Posted by Stephen ty, btw wats ur book of coding called?? also is it possible to insert like a a string from cmd coding Like: @echo Pwned! start start start start pause @echo How was That? pause in visual basic
Originally Posted by Stephen in visual basic Why would you wanna use that? Wouldnt Looping Process.Start(CMD) be easier?
1. Add a "Link Label" 2. Change the Name of Link Label to MPGH.NET or something 3. Double click Link Label and type in Code: Process.Start("http://www.mpgh.net")
Originally Posted by Stephen is it possible to put cmd code in?? If you guna spam CMDs, use this Code: Dim Times As Integer For Times = 1 To 5 'Change 1 to 5 to amount of times u want to spam it Process.Start("cmd") Next Times End Sub End Class