The text is more longer than the width of DropDownList?
In some cases the user can't see the complete text when the description of the text is more longer than the width of the DropdownList however we can implement an easy solution into VB2008 (this found into the old versions):
If
Not Me.Page.IsPostBack Then
For Each list As ListItem In Me.DropDownList1.Items
list.Attributes.Add(
"title", list.Text)
Next
End If
Franklin Garzón
MVP Visual FoxPro