Adblock breaks this site

Splash screen

Discussion in 'Archives' started by scary tiger, Jul 25, 2007.

  1. scary tiger

    scary tiger Member

    Joined:
    Mar 12, 2007
    Posts:
    97
    Referrals:
    0
    Sythe Gold:
    0
    Splash screen

    what is the code for splash screen Loading and has a timer example when i open the program splash screen will pop up and if i wait 20 seconds the program will pop here self i dont know if you all can understand it:( if the program opo up the splash screen wil gone
     
  2. LeetScape

    LeetScape Active Member

    Joined:
    May 27, 2007
    Posts:
    126
    Referrals:
    0
    Sythe Gold:
    1
    Splash screen

    Easiest way to make one is right click the project menu, click create form then choose Splash screen :)
     
  3. Le_Dark_Lord

    Le_Dark_Lord Forum Addict
    Banned

    Joined:
    Dec 6, 2005
    Posts:
    451
    Referrals:
    3
    Sythe Gold:
    0
    Splash screen

    -.-

    1) Click the 'new form' button
    2) A dialog should come up, there should be the option to create a spalsh screen. Double click it
    3) Now for the timer, there is a clock-looking icon in your tools toolbar - insert one.
    4) You need to change the Interval option in the properties for the timer, but im not sure of a suitable number and I am even more unsure of the code...

    it would be something like
    Code:
    if timer1.interval = 4 then
    frmsplash.visible = false
    
    Sorry.

    I hope that helps a bit. If you can find the right code then yeh...
     
  4. hmm

    hmm Active Member

    Joined:
    Jan 21, 2007
    Posts:
    181
    Referrals:
    2
    Sythe Gold:
    5
    Splash screen

    new form for splash..
    add a timer and set the interval, 1000 for 1sec.
    guessing you would use a label to countdown, if it = 0 then open mainform, unload splash.
    Code:
    Private Sub Form_Load()
    Timer1.Interval = "1000"
    
    End Sub
    
    Private Sub Timer1_Timer()
    If Label1.Caption <= "0" Then
    Form2.Show
    Unload Me
    Else
    Label1.Caption = Label1.Caption - 1
    End If
    End Sub
    
    
    so:timer, label, extra form
     
  5. Jazz00006

    Jazz00006 Apprentice
    Visual Basic Programmers

    Joined:
    Aug 26, 2005
    Posts:
    807
    Referrals:
    0
    Sythe Gold:
    0
    Splash screen

    Jazz.CNET > Sources > VB6 > Flashy looking splash screen
    Timers are overrated....
    I can open it fine, I don't know why it gives you a corrupt archive error... get a different archive reader like 7zip or winace if winrar isn't your cup of tea, winzip itself is horrible
     
  6. scary tiger

    scary tiger Member

    Joined:
    Mar 12, 2007
    Posts:
    97
    Referrals:
    0
    Sythe Gold:
    0
    Splash screen

    7zip not worked winace work:) ty
     
  7. scary tiger

    scary tiger Member

    Joined:
    Mar 12, 2007
    Posts:
    97
    Referrals:
    0
    Sythe Gold:
    0
    Splash screen

    sorry juzz but i cant open it but i open it on winace i trying to move the file on my computer but its says corrupted Try uploading it http://www.mediafire.com/?4h7wa2w1dxn This is commando trainer with splash screen i will gonna show it from i made an splashscreen if everybody wants for trainer post here
     
< Selling Membership Pins | Need fire caper for a lvl 63range pure 44prayer! Big pay! >


 
 
Adblock breaks this site