Sub mar()
Dim IE As New SHDocVw.InternetExplorer
IE.Visible = True
IE.navigate "http://aicf.in/national-tournament-registration/"
Do While IE.readyState <> 4
Loop
IE.document.getElementById ("national_plr_payments_form")
End Sub
Help me to select the drop down option
I don't know whether I have selected the correct element id.
Dim IE As New SHDocVw.InternetExplorer
IE.Visible = True
IE.navigate "http://aicf.in/national-tournament-registration/"
Do While IE.readyState <> 4
Loop
IE.document.getElementById ("national_plr_payments_form")
End Sub
Help me to select the drop down option
I don't know whether I have selected the correct element id.