Re: Message Progress ? (General questions)
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.