Message Progress ? (General questions)
Anyone have a sample of how to use the progress event with a progress bar in vb6 ?
[:wink:]
Re: Message Progress ?
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 ?
Thank You !
that was a very quick response !
truly appreciated !
[:wink:]