G Guest Jan 19, 2005 #1 How can I display a (division or something) box with controls in it and it is scrollable both horizontally and vertically in my Webform?
How can I display a (division or something) box with controls in it and it is scrollable both horizontally and vertically in my Webform?
R Rutger Smit Jan 19, 2005 #2 rkbnair said: How can I display a (division or something) box with controls in it and it is scrollable both horizontally and vertically in my Webform? Click to expand... Put div tags around it with a fixed width and height and set the overflow on 'auto' Something like <div style="width:400px; height:400px; overflow:auto;"> .... your controls go here ... </div> //Rutger
rkbnair said: How can I display a (division or something) box with controls in it and it is scrollable both horizontally and vertically in my Webform? Click to expand... Put div tags around it with a fixed width and height and set the overflow on 'auto' Something like <div style="width:400px; height:400px; overflow:auto;"> .... your controls go here ... </div> //Rutger
B B. Comrie Jan 20, 2005 #3 Use an <IFrame></IFrame> Tag and display a second page in the frame. IE: <IFrame framespacing="0" border="0" frameborder="0" width="200" height="200" src="MyPage.aspx"></IFrame> B Comrie http://www.codewidgets.com
Use an <IFrame></IFrame> Tag and display a second page in the frame. IE: <IFrame framespacing="0" border="0" frameborder="0" width="200" height="200" src="MyPage.aspx"></IFrame> B Comrie http://www.codewidgets.com
Q qwerty Feb 10, 2005 #4 You can use a control called MultiPage control from Internet Explorer Web Controls library.