Results 1 to 5 of 5
  1. #1
    Kung Fu Penguin31's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Location
    how am i supposed to know....
    Posts
    473
    Reputation
    12
    Thanks
    48

    Arrow [Tutorial] Make a Splash Screen

    In this tutorial i will teach you how to make a splash screen for your visual basics applications.

    This is how it will work:
    the user will start the program , and the splash will pop up, it will wait 3 seconds and start the program.

    Procedure
    ok so,
    make a new form for your splash screen,
    to do this: right click the project explorer>>add>>Form

    Put whatever you want on it , eg."Welcome".

    Go to properties and set "Border style" to "none" like so..


    next make a timer and 2 labels.

    Timer Properties
    set the interval to "1000"
    make sure it is enabled.


    Label Properties


    set label1's caption to "Starting in:"

    please position both labels beside each other. like so..


    now here comes the code....

    Use this code for the timer:
    Code:
    'Kung fu penguin's splash screen
    'countdown
    
    If Label2.Caption = "0" Then
    Form1.Hide ' hide the splash screen
    form2.Show 'show your main program
    
    Else
    Label2.Caption = Label2.Caption - 1 ' if it isn't zero then minus one.
    End If
    and also put this in "Form_Load()"
    Code:
    Label2.Caption = "3" ' whatever you want to start the countdown from.
    Optional Tip
    You could also make those two labels transparent so the user cant see the countdown.
    to do this ... go to the properties for the label and change "Visible" to "False".

    Change Startup Form

    If you made the form for your hack first, that will be the thing that starts up first, you want to change it so your splash screen starts up first. To do this simply go to:
    Project(located at the top tool bar)>>Project1 Properties ("project 1" is the name of your project) once you have clicked that:



    CONCLUSION
    thanks for reading my tutorial. Please post any problems you have , and i will be happy to help

    if you use my tutorial, please thank me
    or add to my reputation,







    [img]https://www.danasof*****m/sig/ghghhkjklk.jpg[/img]

    drill sargeant: How tall are you boy!?
    soldier: umm....urr about 5' 11''
    drill sargeant: I didn't know they stacked shit that high!!

    Creator of the Annihilation,Freebie and KFP Series.

    <MASTER HACKER>

  2. The Following User Says Thank You to Kung Fu Penguin31 For This Useful Post:

    castaway (11-10-2007)

  3. #2
    castaway's Avatar
    Join Date
    Mar 2007
    Location
    In a BIG Box.
    Posts
    1,636
    Reputation
    14
    Thanks
    97
    that was hard *uhum*
    XDD!

  4. #3
    Kung Fu Penguin31's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Location
    how am i supposed to know....
    Posts
    473
    Reputation
    12
    Thanks
    48
    WHAT DOES "xd" ACTUALLY MEAN ?

    btw thanks for the "thanks"







    [img]https://www.danasof*****m/sig/ghghhkjklk.jpg[/img]

    drill sargeant: How tall are you boy!?
    soldier: umm....urr about 5' 11''
    drill sargeant: I didn't know they stacked shit that high!!

    Creator of the Annihilation,Freebie and KFP Series.

    <MASTER HACKER>

  5. #4
    castaway's Avatar
    Join Date
    Mar 2007
    Location
    In a BIG Box.
    Posts
    1,636
    Reputation
    14
    Thanks
    97
    like a smiley -.-
    xD
    ;D
    XD
    like i was just jokin

  6. #5
    jaqq3000's Avatar
    Join Date
    Sep 2007
    Posts
    123
    Reputation
    10
    Thanks
    9
    This is good for somebody.

Similar Threads

  1. [TUTORIAL] How to customize lobby images and splash screen!
    By twamp22 in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 30
    Last Post: 08-09-2010, 06:35 PM
  2. [TUTORIAL] Make flash games full screen
    By treeham in forum Visual Basic Programming
    Replies: 7
    Last Post: 01-22-2010, 11:57 PM
  3. Video tutorial: Making WarRock hack in Visual Basic
    By Darky in forum Visual Basic Programming
    Replies: 5
    Last Post: 02-12-2009, 02:47 PM
  4. [Tutorial] Make Window Always On top
    By blipi in forum Visual Basic Programming
    Replies: 3
    Last Post: 11-05-2007, 03:45 PM
  5. [Video tutorial] Make your own css cheats
    By seren1ty in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 6
    Last Post: 09-15-2007, 04:11 PM