Web Browser locks after SHowModal

  • Thread starter Thread starter NesClip
  • Start date Start date
N

NesClip

I have a modal dialog which has the web browser control in it. The first
time it comes up fine. If I hide and then reshow, the form comes up, but
the Web Browser is locked.

Kent
 
* "NesClip said:
I have a modal dialog which has the web browser control in it. The first
time it comes up fine. If I hide and then reshow, the form comes up, but
the Web Browser is locked.

How do you hide and reshow the form?
 
The form is loaded by outside code calling a public method on the form, lets
say frm.BeginAction(). Inside that method the form calls Me.ShowDialog.

Then on the OK Button click event in the form an event is raised that is
handled by the calling code outside the form. The handler for this event
calls frm.Hide.

Kent
 
Actually, the hiding works just like the showdialog - a call is made to a
public method, which in turn calls Me.Hide.
 
Back
Top