Hello, I have issues doing something very similar.
I got the Excel part working perfectly. However, when I open the form, I can't write to it. The form is very simple. One text box and the submit button. then it goes and deos it's thing.
<form action="charge_number_details.cfm" name="get_charge_number_details" method="post" onSubmit="return errorCheck();">
<table>
<tr>
<td width = "120">Charge Number: </td>
<td width ="255"><input type="text" maxlength="21" size="35" name="charge_number"> </td>
<td>Enter a whole charge number or any beginning part of a charge number to return all charge numbers for that string (ie. B201) </td>
</tr>
<tr height="45px" valign="bottom" ><td> <input type="submit" value="Get Details"></td></tr>
</table>
</form>
now I have tried all examples I could find but nothing.. Below is a test code I am using.
#include <IE.au3>
Local $oIE = _IECreate("https://thesite.com/")
WinActivate("get_charge_number_details")
Local $oForm = _IEFormGetObjByName($oIE, "get_charge_number_details")
Local $oText = _IEFormElementGetObjByName($oForm, "charge_number")
_IEFormElementSetValue($oText, "xxxx")
Any help or pointers is super appreciated.
Thanks..