Hi !!!
I have a continuous form with a combobox.Data in the combobox are based on a table :
ID | Name
******|*********
1 | name 1
2 | name 2
...
What I want to do is to change the data into the combobox depending on the value of this combobox.
e.g : If the value selected in the combobox is 1, then I want to put 1, 4 and 5 into the combobox, if the value is 2, I want 1 or 2 ....
On a single form, I could use VBA code in Form_Open method, but how can I do with a continuous form ?
I have a continuous form with a combobox.Data in the combobox are based on a table :
ID | Name
******|*********
1 | name 1
2 | name 2
...
What I want to do is to change the data into the combobox depending on the value of this combobox.
e.g : If the value selected in the combobox is 1, then I want to put 1, 4 and 5 into the combobox, if the value is 2, I want 1 or 2 ....
On a single form, I could use VBA code in Form_Open method, but how can I do with a continuous form ?