I have a WebBrowser control hosted in a windows Form. The control is used to display hyperlinks which get created at runtime. These links point to
WebBrowser
Form
Use form.ShowDialog(form) instead on form.Show(), then it will work ! where form is the running instance of your windows Form
form.ShowDialog(form)
form.Show()
form