I have a windows form application with Two forms, Login
and Account
In the Login form, i have backgroundWorker1
private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
// doing some heavy work ...
Account acc = new Account(entered_username, entered_password, true);
acc.ShowDialog();
acc.Dispose();
}
//....
And Button1
//...
private void Button1_Click(object sender, System.EventArgs e)
{
showOrHideLoading();
backgroundWorker1.RunWorkerAsync();
}
//...
When i click on button1, the Account form appears correctly but after adding a WebBrowser Control to the Account form, the application doesn't work as expected, and when i click on Button1, nothing happens!
Is there any limitation of using WebBrowser Control with BackgroundWorker ?
I need to display a link (to facebook like button) using WebBrowser, is there an alternative way to display html content inside Windows Forms Application without using WebBrowser control.