Dear friends,
I have 2 comboboxes in a form. I want the first combobox to show all records of my table if the second combobox is null.
But if the second combobox is not null, I want the first combobox to show only information which contains the selected item in the second combobox.
Example:
field1 field2
alfa 1
bravo 1
charlie 1
david 2
echo 2
fox 2
golf 2
honey 3
item 3
jack 3
I want the first combobox to show all the "field1" items if the second combobox is null, and if the second combobox is for example "2", I want the first combobox to show only "david", "echo", "fox" and "golf"
Thank you.
I have 2 comboboxes in a form. I want the first combobox to show all records of my table if the second combobox is null.
But if the second combobox is not null, I want the first combobox to show only information which contains the selected item in the second combobox.
Example:
field1 field2
alfa 1
bravo 1
charlie 1
david 2
echo 2
fox 2
golf 2
honey 3
item 3
jack 3
I want the first combobox to show all the "field1" items if the second combobox is null, and if the second combobox is for example "2", I want the first combobox to show only "david", "echo", "fox" and "golf"
Thank you.
Comment