[VB] How to make a ".exe Launcher"
I will show u today a ".exe Launcher"

Its very simple !!
First u need:
Visual basic 2008/2010, run it
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Add
- OpenFileDialog1
- 2 Button
- 1 Textbox
1. Create a Form.
2. Source Code
Browse Button:
Code:
If Me.OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
TextBox1.Text = OpenFileDialog1.FileName
End If
Start Button:
Code:
Process.Start(TextBox1.Text)
Form1 :
Code:
OpenFileDialog1.Filter = " (*.exe)|*.exe"
FullCode:
Code:
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
OpenFileDialog1.Filter = " (*.exe)|*.exe"
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Process.Start(TextBox1.Text)
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If Me.OpenFileDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
TextBox1.Text = OpenFileDialog1.FileName
End If
End Sub
End Class
3. U can put it in a Injector
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Enjoy
