Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Combo box tricks

Status
Not open for further replies.

TomNY

Programmer
May 21, 2001
8
US
I've got two combo boxes: one bound to a field called 'Group', the other to a field called 'Type', in the same table. The contents of the combo box come from similarly-named lookup tables: GroupList and TypeList. However, here's the rub: each Type is a member of a Group. If the user selects a different Group in the combo box, I want the user to only see those Types in the second combo box that are related to the Group just chosen:

SELECT Type WHERE TypeGroupID = CBOGroup;

... something along those lines. I'm having problems getting this to work, probably because the two combo boxes are bound to table fields. Any ideas?
 
Check out the FAQ's section of this forum as RickSpr wrote one for just such a question.

Joe Miller
joe.miller@flotech.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top