I am trying to use the example provided by jmcilhinney using the BGW and Progress bar, but haven't gotten anywhere. I want the progress bar to actually show the progress of a file loading into an application. I can get the size of the file by using this;

vb Code:
  1. Dim fileSize As Long
  2. fileSize = FileLen(selectedDatabase)
  3. MessageBox.Show(CStr(fileSize))

but then have no idea what to do with it.