Internet explored embedding , problem with model window

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

Guest

Hi
I am embedding IE to winform. When I invoke this form as a model form IE is now shown at all. But when i show as normal form then the window is embedding IE correctly and showing the form
Any clue

Thanks and Regards
Sachi
 
I've noticed this too in a nother place. The internet explorer object
doesn't handle modal dialogs very well. For example, when you open a modal
dialog in internet explorer with JavaScript code, the dialog cannot change
URL when you click a link for example. I belive this is caused by the
Security embedded in Internet Explorer. That it doesn't allow to surf on
other pages. Your issue might be for security purposes too. I'm not sure but
its that or just a huge bug. Neither of the reasons are any good to me.

My suggestion is that when you open the window, disable the parent. Set your
new window to TopMost True and reenable the parent window (using .parent
member of the form in _closing event of the form) when the window closes.

Sincerely,
Daniel

Sachi said:
Hi,
I am embedding IE to winform. When I invoke this form as a model form IE
is now shown at all. But when i show as normal form then the window is
embedding IE correctly and showing the form.
 
Back
Top