Hi does anyone know how to point to a combo box correctly in SQL
i have a few tables and a for with one BIG list in a combo box.
to save having to keep scrolling down the list i created an unbound combo box, to give the user the ability to kinda lock the other one (which is used for adding records)
put simply 1 combo box should determine which the other one lists
so If I were to select somthing in the unbound one the one thats bound will only show the others selected item.
_____________________________________________-
i used SQL in the row Source like this
SELECT DISTINCTROW [Team].[TeamId], [Team].[NameOfTeam] FROM [Team] WHERE [team].[TeamID] = [Combo_TeamFilter].[value] ORDER BY nameofteam
this just makes my bound combo box empty
_______________________________________________
TeamFilter is the unbound combo box
I want to use the first column in the combo box for the rowsource. The data type of this field is ReplicationID.
any ideas? am i just doing somthing stupid???
i have a few tables and a for with one BIG list in a combo box.
to save having to keep scrolling down the list i created an unbound combo box, to give the user the ability to kinda lock the other one (which is used for adding records)
put simply 1 combo box should determine which the other one lists
so If I were to select somthing in the unbound one the one thats bound will only show the others selected item.
_____________________________________________-
i used SQL in the row Source like this
SELECT DISTINCTROW [Team].[TeamId], [Team].[NameOfTeam] FROM [Team] WHERE [team].[TeamID] = [Combo_TeamFilter].[value] ORDER BY nameofteam
this just makes my bound combo box empty
_______________________________________________
TeamFilter is the unbound combo box
I want to use the first column in the combo box for the rowsource. The data type of this field is ReplicationID.
any ideas? am i just doing somthing stupid???