Les,

The interface methods and properties are on MSDN, here's one link here:

HTML and DHTML Reference

In terms of setting focus - you nailed it - the only way I know of is to use kix'x setfocus, suggest putting in a retry counter so one doesn't loop to infinity, right after the make visible in the UDF ...


 $ie.visible = 1
$retry = 5 ; seconds
while setfocus("$title") and $retry
$retry=$retry-1
sleep 1
loop

Something like that anyways ... this COM stuff is kinda fun isn't it ?

-Shawn

[ 09 February 2002: Message edited by: Shawn ]