Results 1 to 8 of 8

Thread: Urgent..just a quick one...please?

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Mar 2002
    Location
    Malaysia
    Posts
    20

    Urgent..just a quick one...please?

    hey guys.....I need some help here on Progress Bar

    My problem is....how do I make the progress bar to move while splash screen takes place??


    All help greatly appreciate.
    the folder is too big.....so I seperated them. thanks

    here is part 1
    Last edited by metalfreak; Jan 4th, 2004 at 01:06 PM.
    Eat, ****, piss and its loops forever.....sick of computers?

  2. #2

    Thread Starter
    Junior Member
    Join Date
    Mar 2002
    Location
    Malaysia
    Posts
    20
    Here is part 2

    just copy and paste everthing into part 1's folder and it should load fine i guess.

    thanks alot guys!
    Attached Files Attached Files
    Eat, ****, piss and its loops forever.....sick of computers?

  3. #3
    PowerPoster
    Join Date
    Oct 2002
    Location
    British Columbia
    Posts
    9,758
    The Part1.zip file is empty.

  4. #4
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    A way to make the progress bar move, but not actually do anything apart from its display (imitate loading) is through a timer:

    VB Code:
    1. Private Sub tmrProgress_Timer()
    2. 'Initialize progress bar
    3. prgMain.Value = prgMain.Value + 1
    4.     If prgMain.Value = 100 Then
    5.           Unload Me
    6.           frmMain.Show
    7.     End If
    8. End Sub

  5. #5

    Thread Starter
    Junior Member
    Join Date
    Mar 2002
    Location
    Malaysia
    Posts
    20
    OMg
    so sorry
    here is part 1
    Attached Files Attached Files
    Eat, ****, piss and its loops forever.....sick of computers?

  6. #6

  7. #7
    Only Slightly Obsessive jemidiah's Avatar
    Join Date
    Apr 2002
    Posts
    2,431
    For your specific code:

    VB Code:
    1. Do
    2.         [b]If (Timer - dblClock) * 100 / 3 <= 100 Then ProgressBar1.Value = (Timer - dblClock) * 100 / 3 'Added Line[/b]
    3.     Loop Until Timer > dblClock + 3
    The time you enjoy wasting is not wasted time.
    Bertrand Russell

    <- Remember to rate posts you find helpful.

  8. #8

    Thread Starter
    Junior Member
    Join Date
    Mar 2002
    Location
    Malaysia
    Posts
    20
    wow.......exact how I wanted it to be

    thanks alot jemidiah
    and of course..everyone as well.

    MartinLiss...thanks for the link.....must have missed it when I searched last night..
    Eat, ****, piss and its loops forever.....sick of computers?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width