Hello Guys
I'm currently running this script inside MS Excel
now this works (may have typos below) however when using this line ".body1:_id3:Number.Value=Range("B1")" it returns an error due to the _ However this is the Name & ID of this field. this CANNOT be change is their anyway i can still reference this field without changing the name and id of this field? If it's any use i know its the 3rd input box down?
Thanks Very Much
Jonathon Morris
I'm currently running this script inside MS Excel
now this works (may have typos below) however when using this line ".body1:_id3:Number.Value=Range("B1")" it returns an error due to the _ However this is the Name & ID of this field. this CANNOT be change is their anyway i can still reference this field without changing the name and id of this field? If it's any use i know its the 3rd input box down?
Dim ObjIE as object
Set ObjIe = createobject ("internetExplorer.Application")
with ObjIe
.Navigate = "http://localhost/test.php"
Do While .busy:DoEvents:Loop
Do While .ReadyState<>4:DoEvents:Loop
.Visible = True
with .Documents.forms("myForm")
.body1:_id3:Number.Value=Range("B1")
.Submit
End With
Thanks Very Much
Jonathon Morris