Trying to think of a quick start to this, this is the only thing i could think of. It calls up Google and datafills the query textbox with the string "Kixtart Scripting". The IE form isn't focused to by default, so might have to switch-over to it to see the results ...

Break On

$URL = "http://216.239.39.101/"

$IE = CreateObject("InternetExplorer.Application")

$IE.Visible = 1

$IE.Navigate($URL)

While $IE.Busy and $IE.ReadyState <> 4 and @ERROR = 0 Loop

$IE.Document.getElementById("q").Value = "Kixtart Scripting"

Exit 0

Its a start I guess...

-Shawn

[ 14. May 2003, 04:19: Message edited by: Shawn ]