Link to home
Start Free TrialLog in
Avatar of chandua
chandua

asked on

dynamic resizing of activex control in a pop up window

Hi,

i am trying to get the activex control dynamically resized based on the size of popup window.

popup window contains a activex control , i set it to a default size when loaded.

what i want to achieve is when the user resizes the popup, even the activex shld resize accordingly.
is that possible?
ASKER CERTIFIED SOLUTION
Avatar of justinbillig
justinbillig

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of justinbillig
justinbillig

you could always make it so the user can't resize the window


http://devguru.com/Technologies/ecmascript/quickref/win_open.html


window.open( "URL", "TITLE", "resizable=no;" );
Avatar of chandua

ASKER

hi justinbillig,

i can't set to NO as i need to have this functionality.
 i was trying to implement your first answer,
window.onResize = OnResize;
where i wud ablr to set this as i open the popup window using window.open()

pls reply asap.
put it in the page that you open

so if your line looks like this

window.open( "http://www.domain.com/axtivex.html" );


in axtivex.html put that function
Avatar of chandua

ASKER

i hit the the following err on "undefined"
event.height;
try window.height / window.width
Avatar of chandua

ASKER

hi i get it as invalid arguement.
 i tried document.Form1.clientHeight
its the same err
Avatar of chandua

ASKER

Hi justinbilling,

i used document.body.clientHeight & it worked.

anyways thanks for getting it going.