Can anyone double-check this for me ? run this script as-is, the test for the ie createobject works just fine, then comment out the ie create and uncomment the adodb create, same test, but it tests negative (but the object got created just fine) ...

break on

$obj = createobject("internetexplorer.application")

; $obj = createobject("adodb.connection")

if $obj
 ?"ok"
else
 ?"bad"
endif

exit 1


Thanks for any help.

-Shawn