Re: databound combo boxes
I don´t understand ... I have this kind of combos
and think they work properly.
Do you establish the propierties RowSource, ListField (And RowMember if you work with ADO)
for the items you want to show, and BoundColumn for the field you want to store in the combo when selecting?
And the propierties DataSource (Datamember), DataField for the origin table?
Let me know how you exactly link your combo...
Bye!!
Re: databound combo boxes
Sorry, I should have specified that I am using DAO combo boxes. The recordset type is set to 1-Dynaset. That seems to be the only property that seems important. But let me know if you need to know more. Thank you in advance!
Re: databound combo boxes
I suppose you use a DBCombo bound to a DataControl
or Remote Data Control.
Dynaset recordset must work fine.
If you are using an usual Combo box , don´t do it,
even when it lets you bind a database field, it
doesn´t work properly.
If you´re using a DBCombo (i think so) and your problems persist, try to use the DataCombo and a ADO DataCOntrol (you´ll find them in Components)
and can connect to your database with a single ODBC DSN connection, as usually.
Then try to link the combo the same as I explained in my previous mail and tell me if your
problems persist
Be lucky!! ;)
JaIme
Re: databound combo boxes
Thanks Jaime,
I'll try that and let you know.