Re: Auto login to website?
Re: Auto login to website?
thank you but i don't need code in your topic you send to me
Can you go to link in my topic and answer my question?
i want solve it accurate:confused::confused::confused:
Re: Auto login to website?
Are there anyone help me?:confused::confused::confused:
Re: Auto login to website?
assuming you have a webbrowser control (wb)
vb Code:
wb.navigate2 "http://paygate.vtc.vn"
do until wb.readystate = 4 'wait for page to load
doevents
loop
with wb.forms(0)
.all("LoginControl$txtUserName").value = "bank136"
.all("LoginControl$txtPassword").value = "123456"
.submit
end with
do until wb.readystate = 4 'wait for login to complete
doevents
loop
wb.navigate2 "https://ebank.vtc.vn/home/ebank.mone....html?m=1&l=vi"
i have no idea what is in your textboxes, or what you want to use them for
and don't bump your threads
Re: Auto login to website?
how can i use webbrowser control? please help me
are there anyone help me solve my question accurate?
Re: Auto login to website?
Quote:
are there anyone help me solve my question accurate?
we only give assistance, don't write program for you
go to menu > project > components > microsoft internet controls
add control to fom
name webbrowser wb or change code to match name of webbrowser control
put code above into command button or form load