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
In a normal scenario it should be sufficient for you to set the TabIndex
of the WebBrowser
control to zero. This way, when the form loads the control will be focused and pressing TAB will iterate through the links.
Note that you should also change the TabIndex
of the other controls on the form.
If this does not solve your problem, you need to add more detail on the complexity of the form hosting the control.