Сравни и найди ошибки:
Код:

#include <IE.au3>
$oIE = _IECreate ("http://i-jet.ru/forum/index.php")
$oForm = _IEFormGetCollection ($oIE, 0)
$oLogin = _IEFormElementGetCollection ($oForm, 0)
$oPass= _IEFormElementGetCollection ($oForm, 2)
_IEFormElementSetValue ($oLogin, "Login")
_IEFormElementSetValue ($oPass, "123")
_IELoadWait ($oIE)
_IEFormSubmit ($oForm)
Exit