Click to See Complete Forum and Search --> : ASP Form Layout
Fan of BUZBY
Apr 3rd, 2002, 05:25 AM
Could anybody tell me if there is a control "Container" that you can place other controls into and then set the width of the container to 100% so that when the browser is resized all the controls within it are also resized. So are therefore still in view to the user !!!
Cander
Apr 3rd, 2002, 08:41 AM
If there is any way to do it, it would have to be using client side javascript, but I dont think there is a way to do that as javascript cannot intercept the browser being resized.
thinktank2
Apr 3rd, 2002, 12:32 PM
<script language="javascript">
window.onResize = resizemystuff;
window.onLoad = resizemystuff;
function resizemystuff()
{
myobj.width = mynewvalue();
}
</script>
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.