I’m writing a page that has a Selection box within a form. Basically, I want it to act like a ListBox would in Visual Basic (each line within the box can be highlighted, and there is no dropdown).
The line of code I have set up right now is:
<SELECT name=“x” SIZE = 10 STYLE=“WIDTH: 60” width=60></SELECT>
(lines of data are added to the Selection Box by using a Function to create a New Option within the Selection Box)
This works fine for me in Internet Explorer. However, when the page is viewed in Netscape, the Selection Boxes have a disabled scroll bar on the right. I need to have the box remain a specific height. Does anyone know of a way to get rid of the scroll bar when viewing it in Netscape, without it having a drop-down list (that is to say, show all 10 lines, even if they are all blank, without a scroll bar)?