Combo Boxes

Luddite Lad

Registered User.
Local time
Tomorrow, 04:08
Joined
Aug 23, 2005
Messages
177
I'm sure this question must have been asked before but I can't find it here, so my apologies.

I have a form for collecting addresses, it has two combo boxes, the first contains a list of states, and then the second contains a list of postcodes found within that state based up a query with the criteria

[forms]![FRM_Delpoint]![StateID]

the problem is the second combo box always shows the list relevant to the first record.
 
No single form view.
 
do a requery of your postcodes field aftter update of states

it would be like

Private Sub sates_AfterUpdate()
me.postcodes.requery
End Sub
 
Luddite Lad said:
I'm sure this question must have been asked before but I can't find it here, so my apologies.

I have a form for collecting addresses, it has two combo boxes, the first contains a list of states, and then the second contains a list of postcodes found within that state based up a query with the criteria

[forms]![FRM_Delpoint]![StateID]

the problem is the second combo box always shows the list relevant to the first record.

Have you setup the combos to be synchronized or cascading? Here's an article that describes how:
http://support.microsoft.com/default.aspx?scid=kb;en-us;209576
 

Users who are viewing this thread

Back
Top Bottom