you need to look at the source page of the website to find the correct names for the text input of that page
you can try this where wb is the name of your webbrowser control
tested works, change the literal value (1235) for your textboxvb Code:
wb.navigate2 "http://dms.telenor.com.pk/sca_tp/login.jsp?" Do Until wb.readystate = 4 DoEvents Loop Set f = wb.document.forms(0) f.all("msisdn").Value = "1235" f.submit
f.all("msisdn").Value = text1.text




Reply With Quote