Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Progress bar and Internet Transfer control

Status
Not open for further replies.

sborny

Technical User
Jun 29, 2001
157
GB
Hi,

I have an app then downloads a file from the internet on a command button click.

Is it possible to show a progress bar while the file is being downloaded.

Here is the code I am using to download the file.
<code>
Private Sub Command1_Click()
Dim b() As Byte
Dim ff As Integer

b() = Inet1.OpenURL(" icByteArray)

ff = FreeFile

Open "c:\temp\app.csv" For Binary Access Write As #ff
Put #ff, , b()
Close #ff

End Sub
</code>

I hope someone can help.

Thanks

Symon.

Everything has an answer, it's just knowing the right question to ask. !!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top