Thursday, May 10, 2018

[Guide] make a Visual Basic the Ran Launcher

I will teach you how to make a BASIC ran launcher step by step.



Requirements

Visual Basic 2008 express or higher

.net framework 4


1.Download and install the requirements.

2.Open Visual Basic Express Edition

3.Make a new project(WindowsFormApplication) is name all search.

4.Change the properties (Be careful you might do something wrong.)

5.Make a button And change the text to start.

6.Double click the button and put this code to it.
Code.
Dim p As New Process()
        p.StartInfo.FileName = "Game.exe"
        p.StartInfo.Arguments = "/app_run"
        p.Start()
        Me.Close()

7.Go back to the design and put a new button.(Change the text to exit.

8.Put this code to the exit button.
Code.

Me.Close()
Optionals

This part of the tutorial is optional, you could either use it or not.

REGISTER BUTTON
*1.Make a new button,change the text to Register.

  2.Put this code to that button.
System.Diagnostics.Process.Start("http://YOURREGISTERURL.com")

use Game.exe to MiniA.exe is its working!

Visual Basic 2018 or 2010 its working :D

Credit:
Lordskie03.

No comments:

Post a Comment