Bryce...

Can you try this on Win95 ...

c:\> wscript test.vbs

or cscript.exe will work too !

code:

dim ie, doc


set ie = createobject ("internetexplorer.application")


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


set doc = ie.document


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


msgbox ("Pausing...")


ie.quit()


set doc = nothing


set ie = nothing


Shawn

p.s.

I didn't code-up the wait for busy loop - hope it doesn't interfere !

Shawn..

p.p.s.

I'm hoping that this is a taste of what KiXtart2000 will be like ?

Shawn...

[This message has been edited by Shawn (edited 13 September 2000).]