jvcoach23
Centurion
I have a combo box that is getting it's data from a stored proc in Sql. The proc is bringing back the data to the combo box, but when I select the drop down arrow, the box is blank.. depending on which box I choose, there is enough data in teh drop down that the scroll bars show up, but none of the data is displayed. If I select a value, then that values appears in teh combo box. I'm not sure what I've done or not done that it is working this way. can anyone help.
Here is what I'm doing to bring in the data
Here is what I'm doing to bring in the data
Visual Basic:
With Me.cbServer
.DisplayMember = "vcServer"
.ValueMember = "intTblPMServerId"
.DataSource = wsPerfmon.spPMListing_Server.Tables(0).DefaultView
End With