what's the wrong with ado.stream

  • Thread starter Thread starter myhyli
  • Start date Start date
M

myhyli

//////////////////////////////////////////////////////////////////////
var oStream = new ActiveXObject("adodb.stream");
oStream.type = 1;
oStream.mode = 1;

oStream.open("URL=http://www.blueidea.com/bbs/icon/panliu888.gif")

alert(oStream.Size);
oStream=null;
//////////////////////////////////////////////////////////////////////

it reported "c004800a" error at the line "oStream.open(......"

why? and how to fixed it?
 
MyHyli,

Did you know that this is a ADONET newsgroup, not a ADODB newsgroup.

microsoft.public.data.ado

Cor

..
 
Back
Top