Bryce:

Ok - first try this script...

Give IE lots of time to "loadup" before continuing on the first pause. I would expect the same error.

code:

dim ie, doc


set ie = createobject ("internetexplorer.application")


ie.navigate ( "about:blank" )
ie.visible = 1


msgbox ("Pausing...")


set doc = ie.document


doc.write ( "<html><body><h1>Hello Bryce!</h1></body><html>" )


msgbox ("Pausing...")


ie.quit()


set doc = nothing


set ie = nothing


Then try this code...

code:

dim ie


set ie = createobject ("internetexplorer.application")


ie.navigate ( "about:blank" )
ie.visible = 1


msgbox ("Pausing...")


ie.document.write ( "<html><body><h1>Hello Bryce!</h1></body><html>" )


msgbox ("Pausing...")


ie.quit()


set doc = nothing


set ie = nothing


This bypasses the olegetproperty() type function and accesses the document object directly !

Shawn.