How to disable a WebBrowser control on a window?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Windows.Forms application with .NET 2.0.

I have a need to disable user interaction with the WebBrowser control on a
form while another thread runs to completion. But the "enabled" property on
this control is not implemented according to documentation.

How might I disable user interaction with this control?

Thanks,
Jeff
 
Jeff said:
Windows.Forms application with .NET 2.0.

I have a need to disable user interaction with the WebBrowser control on a
form while another thread runs to completion. But the "enabled" property
on
this control is not implemented according to documentation.

How might I disable user interaction with this control?

You may want to try to place the control inside a panel and disable the
panel (untested!).
 
Back
Top