Message Progress ? - WeOnlyDo Discussion board

Message Progress ? (General questions)

by Maverick, Saturday, July 31, 2004, 01:30 (7209 days ago)

Anyone have a sample of how to use the progress event with a progress bar in vb6 ?

[:wink:]

Re: Message Progress ?

by wodSupport, Saturday, July 31, 2004, 01:36 (7209 days ago) @ Maverick

Maverick,

I think you can use something as easy as this:

[code]Private Sub Pop3_Progress(ByVal Position As Long, ByVal Total As Long)
On Error Resume Next
ProgressBar1.Min = 0
ProgressBar1.Max = Total
ProgressBar1.Value = Position
End Sub[/code]

Regards.

Re: Message Progress ?

by Maverick, Saturday, July 31, 2004, 02:08 (7209 days ago) @ wodSupport

Thank You !
that was a very quick response !
truly appreciated !

[:wink:]