01-31-04 06:33 PM
One of the easiest ways to control this is using HTML <DIV> tag to
wrap you
output and define the height and width for the tag.
<div style="width:450;height:160;overflow:auto;">
List of records...
</div>
Once the length of your records exceed 160px (height), the scrollbar
will automatically appear.
Or you can use <IFRAME> if the list of records is returned from a URL:
<iframe height='300' width='100%' name='Records' scrolling='auto'
src='http://mydb.com/servlet/GetAllRecords'
title='Records'>
</iframe>
LTH.
[ Post a follow-up to this message ]
|