P
pugus
Guest
I have an ADP project setup that's links to a sql server 2000 database.
I have two tables - Missionaries and Boards.
They are linked in a one-to-many relationship (one Board per Missionary, many Missionaries per Board).
I am running a form that is based on a view (FullView). FullView contains the fields from Boards and from Missionaries. I want my form to have a combo box that draws the Board names from Boards (not from FullView, because sometimes not all the Boards will be assigned to a Missionary).
However, when I setup my source for the combo box to be:
SELECT BoardID, BoardName FROM Boards ORDER BY BoardName
and set my "Bind Column" to 1, then I go to form view and select a board from the list and move to the next record, my BoardName value is rewritten with the BoardID value.
Am I making any sense? Can anyone help?
I have two tables - Missionaries and Boards.
They are linked in a one-to-many relationship (one Board per Missionary, many Missionaries per Board).
I am running a form that is based on a view (FullView). FullView contains the fields from Boards and from Missionaries. I want my form to have a combo box that draws the Board names from Boards (not from FullView, because sometimes not all the Boards will be assigned to a Missionary).
However, when I setup my source for the combo box to be:
SELECT BoardID, BoardName FROM Boards ORDER BY BoardName
and set my "Bind Column" to 1, then I go to form view and select a board from the list and move to the next record, my BoardName value is rewritten with the BoardID value.
Am I making any sense? Can anyone help?