im reading in binary data from the Inet control for movies.

sometimes it 404s however, and when i open the file in wordpad, the html 404 page is there. how do i check whether it 404d?

VB Code:
  1. vtData = Inet1.GetChunk(256, 1)
  2. tmplen = UBound(vtData)
  3. length = length + tmplen 'get the total size
  4.                        
  5.  if instr(1,vtData,"404") then
  6.     ....

i tried that, doesnt work, when i debug.print it, its full of ? marks.

any ideas? i think its a conversion from binary to ascii, which i dont know how to do..

thanks