При выполнении этой команды:
Код:
#include <IE.au3>
$file_1 = FileOpen ( "1.txt", 0)
$First = FileReadLine ($file_1, 4)
$Last = FileReadLine ($file_1, 3)
FileClose ($file_1)
$oFirst1 =_IEGetObjByName($oIE, "CustomFields[63]")
$oLast1 =_IEGetObjByName($oIE,"CustomFields[64]")
_IEFormElementSetValue ($oFirst1, $First)
_IEFormElementSetValue ($oLast1, $Last)
Возникает ошибка:
Код:
--> IE.au3 V2.4-0 Warning from function _IEGetObjByName, $_IEStatus_NoMatch (Name: CustomFields[63], Index: 0)
--> IE.au3 V2.4-0 Warning from function _IEGetObjByName, $_IEStatus_NoMatch (Name: CustomFields[64], Index: 0)
--> IE.au3 V2.4-0 Error from function _IEFormElementSetValue, $_IEStatus_InvalidDataType
--> IE.au3 V2.4-0 Error from function _IEFormElementSetValue, $_IEStatus_InvalidDataType
Пробовал добавлять Index 0 и Index 1 но результат одинаковый.
Чего не хватает?