Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

[Guide] How to code a launcher in vb.net

Status
Not open for further replies.
Joined
Aug 16, 2006
Messages
1,253
Reaction score
199
Location
Emerald City
This is how easy it is, this will require no prior knowledge of any coding language.
I made this because i saw the post about the quick batch file compiler thing w/e.
This will not make a pretty launcher but it will make one that functions. Making it pretty is your problem :]

What you need:
.Net framework 3.5
Download -

Visual Basic 2008 Express Edition
Download -

After you install both start up visual basic 2008.
Click file>New Project (ctrl+N)

Make sure "Windows Data Forms Application" is selected, name it w/e you want, and click ok.

Now you should have a blank windows form like this:
-DefaulT - [Guide] How to code a launcher in vb.net - RaGEZONE Forums


Click the button tool in the tool box and then click the form.

Button Tool:
-DefaulT - [Guide] How to code a launcher in vb.net - RaGEZONE Forums


Your form should now look something like this:
-DefaulT - [Guide] How to code a launcher in vb.net - RaGEZONE Forums


re size the button if you would like. then in the properties panel (located in the bottom rite corner) where it says "Text" change that to "Play"
-DefaulT - [Guide] How to code a launcher in vb.net - RaGEZONE Forums


now double click the button to get to the coding and paste the following:
For OSRose/OSIRose Based:
Code:
Shell ("TRose.exe @TRIGGER_SOFT@ _server SERVERIP")
replace the SERVERIP with your server ip.

For Arcturus Based:
Code:
Shell ("PROTECT.exe SERVERIP")
replace protect.exe with the name of your gameguard thing, and server ip with your server ip :P

click file>save all (ctrl+shift+S)

then click Build>Build "Your Applications Name"

you will find the file you just saved and built in

"\My Documents\Visual Studio 2008\Projects\WindowsApplication1\WindowsApplication1\bin\Release"

or something close to it.


one i made in 2 min:
-DefaulT - [Guide] How to code a launcher in vb.net - RaGEZONE Forums


Hope this helped.
questions? post em.
 
Last edited:
ty, its simple, sure it might be weird to have a launcher with 1 button, but its a wai to have a launcher thats not a batch file lol

plus learn sum vb.net basics and make it even better :P

True much better then having a batch file lol

And as for having only 1 button simple but effective gets the job done.
 
Default , i need ur help its to hard i tryed and tryed but dont work :( can i get u msn ? than i add u i hope u can help me than . i hope u see this
 
Default , i need ur help its to hard i tryed and tryed but dont work :( can i get u msn ? than i add u i hope u can help me than . i hope u see this

Oh common man use your head its real simple...
 
I found it easy to use but I am playing with it more to see how far I can go with it.
 
Status
Not open for further replies.
Back