I am trying to create a drop down combo box. I am using a data environment I set up with a pre-existing ODBC (that works). The combo box will only show the top item on the list. I have the DataMember and DataField populated.
to use the dataenviroment you need to open it first
dataenviromentName.connectionname.Open
with dataenviromentname.connectionname
.movefirst
If Not IsNull(dataenviromentName.connectionname _
!columName) Then COmboBoxName.AddItem _ dataenviromentName.connectionname!columName
dataenviromentName.connectionname.Open
I thnink this is what you are after
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.