sharonniles
Programmer
Hello Everyone,
I'm using VBA automation to auto enter data into an IE applcation. I want to click on the Edit Name button.
<input type="button" class="button" value="Edit Name" onclick="editName('0')"
<input type="button" class="button" value="Edit Name" onclick="editName('1')"
I tried the following, but I know I have the syntax wrong:
Dim EditNameButton
Set EditNameButton = IE.Document.getElementById("Edit Name").getElementsByTagName("editName('0')")
EditNameButton.Click
Any code snippet will be appreciated.
Thank you.
I'm using VBA automation to auto enter data into an IE applcation. I want to click on the Edit Name button.
<input type="button" class="button" value="Edit Name" onclick="editName('0')"
<input type="button" class="button" value="Edit Name" onclick="editName('1')"
I tried the following, but I know I have the syntax wrong:
Dim EditNameButton
Set EditNameButton = IE.Document.getElementById("Edit Name").getElementsByTagName("editName('0')")
EditNameButton.Click
Any code snippet will be appreciated.
Thank you.