I asked this question a while ago but it didnt really get solved. My program downloads the HTML of the page you can see below. I would like to create a progess bar to show the progress of the download. I can not seem to be able to get the file size and the amount of the file downloaded therefore not allowing me to create a working progress bar. Any help?

VB Code:
  1. Private Sub CmdDowload_Click()
  2.  
  3. Dim sHTML, URL As String
  4.  
  5. URL = "http://www.nats.co.uk/operational/pibs/pib1.shtml"
  6.  
  7. sHTML = Inet1.OpenURL(URL)
  8.  
  9. MsgBox ("COMPLETE")
  10. End Sub