User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
You're currently browsing the Visual Basic 4 / 5 / 6 section within the Software Development category of DaniWeb, a massive community of 456,564 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,584 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Visual Basic 4 / 5 / 6 advertiser: Programming Forums
Views: 1536 | Replies: 3 | Solved
Reply
Join Date: Jul 2007
Posts: 102
Reputation: hawisme000 is an unknown quantity at this point 
Rep Power: 2
Solved Threads: 2
hawisme000's Avatar
hawisme000 hawisme000 is offline Offline
Junior Poster

How to make a Loading bar??

  #1  
Oct 24th, 2007
can any1 help me use a progress bar(if im not mistaken)

i wanna put a loading bar in my login form

but i dont know the syntax i must put

thx in advance to any1 who can help
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Oct 2007
Posts: 3
Reputation: td5223 is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 1
td5223 td5223 is offline Offline
Newbie Poster

Re: How to make a Loading bar??

  #2  
Oct 24th, 2007
Go to Components - Controls and add "Microsoft Windows Common Controls" to your project. Then the progressbar should appear in your list of components. Then select the progressbar and create it on your form. The value can be set something like mainform.progressbar1.value = 50.... (0-100)
Reply With Quote  
Join Date: Aug 2007
Location: Cavite,Philippines
Posts: 508
Reputation: ryan_vietnow is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 68
ryan_vietnow's Avatar
ryan_vietnow ryan_vietnow is offline Offline
Posting Pro

Re: How to make a Loading bar??

  #3  
Oct 24th, 2007
add a timer and a progress bar to your form.
set the progressbar1.max(or maximum i think) to 100,value to 0.
set the timer1.enabled=false

type this inside the timer event:

If ProgressBar1.Value <> ProgressBar1.Max Then
ProgressBar1.Value = (ProgressBar1.Value + 1)
else
frmlogin.hide(or Unload frmlogin)
frmMain.Show
me.enabled=0
End If

then type this after the user successfully logged:
timer1.enabled=1

*change the progressbar1.interval if how fast or slow you progress bar should be.
"death is the cure of all diseases..."
http://ryantetek.wordpress.com
Reply With Quote  
Join Date: Dec 2007
Posts: 11
Reputation: jayDC is an unknown quantity at this point 
Rep Power: 1
Solved Threads: 0
jayDC jayDC is offline Offline
Newbie Poster

Re: How to make a Loading bar??

  #4  
Dec 15th, 2007
I have this in my code
Private Sub mnuOpen_Click()
Dim result As FMOD_RESULT
Dim cD As New cCommonDialog
If channel Then
Call FMOD_Channel_Stop(channel)
End If
Timer1.Enabled = 1
On Error GoTo ErrorHandler
   If (cD.VBGetOpenFileName(sFile, Filter:="Wave Files (*.WAV)|*.WAV|All Files (*.*)|*.*", _
      DefaultExt:="WAV", Owner:=Me.Hwnd)) Then
    Timer1.Enabled = 1
    result = FMOD_System_CreateSound(system, sFile, FMOD_SOFTWARE, Sound)
    ERRCHECK (result)
    result = FMOD_System_PlaySound(system, FMOD_CHANNEL_FREE, Sound, 0, channel)
        ERRCHECK (result)
        result = FMOD_Channel_SetPaused(channel, 1)
        vbalWaveRender1.WaveFile = sFile
   End If
   Exit Sub
ErrorHandler:
   MsgBox "Error: " & Err.description, vbExclamation
   Exit Sub
End Sub
Seem to make the progress after the files load, and that really ain't the progress. Anyway to adjust it to be more accurate, should I move the file loading events to the timer to be executed during the progress bar?
If at first you don't succeed, don't try skydiving!
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

DaniWeb Visual Basic 4 / 5 / 6 Marketplace
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes

Similar Threads
Other Threads in the Visual Basic 4 / 5 / 6 Forum

All times are GMT -4. The time now is 5:50 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC