Hi All, Wasn't sure if this post should go under "ActiveX/COM" or "GUI" forum ... I have created the following piece of code which works great:- #------------------------------------------------------------------------------- #include <IE.au3> $ie = _IECreate("http://www.xxx-xxx",0,1,1,1) _IELoadWait($ie) $form = _IEFormGetObjByName($ie, "login") $text = _IEFormElementGetObjByName($form, "username") _IEFormElementSetValue($text, "xxx-xxx") $text = _IEF