P
Pedro
I'm trying to execute the piece of code below:
Const adTypeBinary = 1
Dim BinaryStream
Set BinaryStream = CreateObject("ADODB.Stream")
'Specify stream type - we want To get binary data.
BinaryStream.Type = adTypeBinary
'Open the stream
BinaryStream.Open
URL=http://server/docs/mydocs/myfile.jpg
As soon as the Open method is executed I get the follwoing
message:
Microsoft OLE DB Service Components error '80040e19'
Object or data matching the name, range, or selection
criteria was not found within the scope of this operation.
The code above works well when I run it locally against my
local instance of IIS5.0. When I load it into my ISP
server, I get the error message above.
Thanks for the help.
Pedro.
Const adTypeBinary = 1
Dim BinaryStream
Set BinaryStream = CreateObject("ADODB.Stream")
'Specify stream type - we want To get binary data.
BinaryStream.Type = adTypeBinary
'Open the stream
BinaryStream.Open
URL=http://server/docs/mydocs/myfile.jpg
As soon as the Open method is executed I get the follwoing
message:
Microsoft OLE DB Service Components error '80040e19'
Object or data matching the name, range, or selection
criteria was not found within the scope of this operation.
The code above works well when I run it locally against my
local instance of IIS5.0. When I load it into my ISP
server, I get the error message above.
Thanks for the help.
Pedro.