Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Displaying Horizontal scrolling bars in list boxes

Status
Not open for further replies.

shadow99

Programmer
Nov 9, 2000
1
US
I am working with a list box which is displaying records using the following code:

<select name=&quot;BulkWines&quot; size=&quot;5&quot; style=&quot;width: 200px&quot;>
<%
Dim strPathToContainerFromRootbw, strFilterbw, strActionbw
strPathToContainerFromRootbw = &quot;LDAP://&quot; & LDAPServer & &quot;/o=GSV_Membership/ou=ProductsServices/ou=BulkWine&quot;
strFilterbw = &quot;(gsvProductStatus=current)&quot;
strActionbw = &quot;admin&quot;
SelectBulkWine strPathToContainerFromRootbw, strFilterbw, strActionbw
%>
</select>

The SelectBulkWine function lists items which are sometimes too long for the list box to display. How can I display a horizontal scroll bar which will allow a user to view the entire record?

Thanks in advance,

shadow99
 
I don't think it's possible. Make the select box wider.

nick bulka

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top