Click here to Skip to main content
15,883,749 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hi all
this cod from my project

C++
public void x () {
this.webBrowser1.Document.GetElementById("name").InnerText = textBox3.Text;
his.webBrowser1.Document.GetElementById("password").InnerText = textBox4.Text;
this.webBrowser1.Document.GetElementById("s1").InvokeMember("click");
this.WaitForLoaded();
x();
}

and more code

My project running and login for 100 accounts if webbrowes is visible (donot any wrong)
but I want runnig webbrowser invisible For speed
if I choose webbrowser visible is false in Properties
My program not working

I delete webbrowser from project Form and add code
WebBrowser webBrowser1 = new WebBrowser();
but program not working what is Changes
what is Different Between webbrowser visible and webbrowser not visible

plz I want help
thnx for all
Posted
Comments
Joezer BH 13-Oct-13 8:36am    
Hi
Show relevant code (of the invisible/visible part)
BillWoodruff 13-Oct-13 8:37am    
What is your goal here ? You do realize your program creates an endless loop of 'x calling itself ? Are you using a WebBrowser control in WinForms ? WPF ?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900