lauraSatellite
Technical User
I have a form that is based on the following query:
SELECT *
FROM Address
WHERE Area=[?];
Also on this form is a combo-box set up with the following values: North, South, East, West. These values correspond to the possible values stored in the 'Area' field of the Address table.
When I change the value displayed in the combo-box, i want the corresponding group of records to be displayed. I have attached the following code to the onChange of the combo-box:
Me.Requery = Me.combobox.Value()
I am relatively new to procedures, any help with this would be very much appreciated.
SELECT *
FROM Address
WHERE Area=[?];
Also on this form is a combo-box set up with the following values: North, South, East, West. These values correspond to the possible values stored in the 'Area' field of the Address table.
When I change the value displayed in the combo-box, i want the corresponding group of records to be displayed. I have attached the following code to the onChange of the combo-box:
Me.Requery = Me.combobox.Value()
I am relatively new to procedures, any help with this would be very much appreciated.