How to determine the Window size in IE for a window to be opened from the COM API?
- by stwissel
I'm using the IE control embedded in an application. Works as advertised. When a user opens a new browser window I intercept the NewWindow2 event and force it into a new tab. However for a certain class of windows I want to allow a popup. Most notably a few windows legacy applications that use popup windows instead of Ajax for Date or Name pickers.
How can I figure out that a window was requested by JavaScript window.open(...) or with a specific size?
Thx for helping.