Page 1 of 3 123 LastLast
Results 1 to 15 of 31
  1. #1
    Neechan''s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    HI !
    Posts
    5,722
    Reputation
    122
    Thanks
    1,318

    [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
    Last edited by Neechan'; 06-21-2011 at 05:35 PM.

  2. The Following 4 Users Say Thank You to Neechan' For This Useful Post:

    ahmedell (04-09-2012),gero39 (03-15-2012),Njowils (07-05-2011),[CFGH]AhMaD (07-20-2011)

  3. #2
    Maybe this world is another planet's Hell.
    MPGH Member
    Arii's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    In my cardbox
    Posts
    2,116
    Reputation
    120
    Thanks
    117
    My Mood
    Breezy
    nice startin it know gewd
    MPGH's Official Facebook, Twitter, and Youtube page!






     
    Swiftdude
    Hero
    Jigsaw
    Alen
    JigsawJr

     
    Scata




  4. #3
    Tonylx4's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    589
    Reputation
    27
    Thanks
    49
    My Mood
    Blah
    Thanks for teh thread boi.

  5. #4
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    Nice Thread..For begginers

  6. #5
    Neechan''s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    HI !
    Posts
    5,722
    Reputation
    122
    Thanks
    1,318
    Quote Originally Posted by Lyoto Machida View Post
    Nice Thread..For begginers
    Jewb i know

  7. #6
    reborn556's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    At your house
    Posts
    432
    Reputation
    11
    Thanks
    16
    My Mood
    Amazed
    Hahaha!

    Know I can make my Launcher designed! Yeah! Nice again!
    _______________________________________________
    There are no easy answer's but there are simple answers
    We must have the courage to do what is morally right

  8. #7
    Jigsaw's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Moon
    Posts
    23,219
    Reputation
    852
    Thanks
    2,089
    Nice guide! Keep doing the great job.
    DEHUMANIZE YOURSELF
    AND FACE TO BLOODSHED

  9. #8
    reborn556's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    At your house
    Posts
    432
    Reputation
    11
    Thanks
    16
    My Mood
    Amazed
    Yay!

    Finished making my *Designed* launcher!
    _______________________________________________
    There are no easy answer's but there are simple answers
    We must have the courage to do what is morally right

  10. #9
    Neechan''s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    HI !
    Posts
    5,722
    Reputation
    122
    Thanks
    1,318
    Quote Originally Posted by reborn556 View Post
    Yay!

    Finished making my *Designed* launcher!
    .

  11. #10
    Jacket's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Insert location here.
    Posts
    8,852
    Reputation
    917
    Thanks
    1,305
    My Mood
    Brooding
    Was looking for things to add
    Thanks for the tut although it's pretty easy.
    Couldn't think of anything else to add.
    Again,thanks fatty


    Ex-Minion
    Ex-Mod
    8/17/11

     

    Greycloak
    Midcent
    MrAntagonist
    WomboCombo
    JakeyXD
    Wolfram


  12. #11
    CaL-'s Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    USA
    Posts
    91
    Reputation
    10
    Thanks
    0
    My Mood
    Bitchy
    Nice guide bruhh keep up the good work!!

  13. #12
    Neechan''s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    HI !
    Posts
    5,722
    Reputation
    122
    Thanks
    1,318
    Thanks all

  14. #13
    Sprite's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Behind you
    Posts
    1,279
    Reputation
    12
    Thanks
    1,124
    My Mood
    Psychedelic
    Starting to know it ...

    EDIT: Finished !

    Making a GUI On It !

  15. #14
    Snipermon's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Alexandria, Egypt, Egypt
    Posts
    5,785
    Reputation
    73
    Thanks
    748
    My Mood
    Yeehaw
    Good job brah keep it working

  16. #15
    Neechan''s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    HI !
    Posts
    5,722
    Reputation
    122
    Thanks
    1,318
    Quote Originally Posted by Snipermon View Post
    Good job brah keep it working
    Thank you

Page 1 of 3 123 LastLast