Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1825
WinCombox ver 10.2
posted

Evening,

I attached, in code a dataview to the the combobox.

strSQLCMD = My.Settings.SQLCMD_FillIn_getSalesGrpsNReps
Dim dvRepGrps As New Data.DataView
dvRepGrps = My.Forms.frmMain.objTools.DBgetDataView("TBL_Info", strSQLCMD, strWhoAmI, , My.Forms.frmMain.msUserName)
With .uwCombo_Ord_AR_SalesID
  .DataSource = dvRepGrps
  .DisplayMember = "Sales Group"
  .ValueMember = "ID"
  .DataBind()
  .Enabled = True
End With

I can see the object has the values in the watch window.

But when I click on the drop down btn I get no list of data appearing!

No drop down grid appears. Watched you video example and seems simple enough. But i am doing this thru code.

Should be 3 columns of data in the drop down.

what am I not setting correclty?

Help!

Thanks

Deasun