Hello,
I continue to work on a large project for my Company, and have once again ran into a wall...
I am attempting to enter information into a cell on a webpage (might be a form?) that has the following attributes:
input name="ctl00$cph$MultiplyByAbsolute$NB" type="text" value="100.00" maxlength="7" id="ctl00_cph_MultiplyByAbsolute_NB" class="editableInputText55" maxvalue="999" decimalplaces="2" pr="" currencysymbol="" thousandssymbol="," decimalsymbol="."
I have tried the following without success:
IE.document.getElementByname("ctl00$cph$MultiplyByAbsolute$NB").setAttribute "value", "103"
IE.document.getElementByname("ctl00$cph$MultiplyByAbsolute$NB").value= 103
HTMLDoc2.forms("ctl00$cph$MultiplyByAbsolute$NB").TEXTFIELDNAME.Value = 103
Anyone have any ideas on the line I need to use to make this work?
Any help would be greatly appreciated!
I continue to work on a large project for my Company, and have once again ran into a wall...
I am attempting to enter information into a cell on a webpage (might be a form?) that has the following attributes:
input name="ctl00$cph$MultiplyByAbsolute$NB" type="text" value="100.00" maxlength="7" id="ctl00_cph_MultiplyByAbsolute_NB" class="editableInputText55" maxvalue="999" decimalplaces="2" pr="" currencysymbol="" thousandssymbol="," decimalsymbol="."
I have tried the following without success:
IE.document.getElementByname("ctl00$cph$MultiplyByAbsolute$NB").setAttribute "value", "103"
IE.document.getElementByname("ctl00$cph$MultiplyByAbsolute$NB").value= 103
HTMLDoc2.forms("ctl00$cph$MultiplyByAbsolute$NB").TEXTFIELDNAME.Value = 103
Anyone have any ideas on the line I need to use to make this work?
Any help would be greatly appreciated!