I am working with a list box which is displaying records using the following code:
<select name="BulkWines" size="5" style="width: 200px">
<%
Dim strPathToContainerFromRootbw, strFilterbw, strActionbw
strPathToContainerFromRootbw = "LDAP://" & LDAPServer & "/o=GSV_Membership/ou=ProductsServices/ou=BulkWine"
strFilterbw = "(gsvProductStatus=current)"
strActionbw = "admin"
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
<select name="BulkWines" size="5" style="width: 200px">
<%
Dim strPathToContainerFromRootbw, strFilterbw, strActionbw
strPathToContainerFromRootbw = "LDAP://" & LDAPServer & "/o=GSV_Membership/ou=ProductsServices/ou=BulkWine"
strFilterbw = "(gsvProductStatus=current)"
strActionbw = "admin"
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