Hi
I have two drop down boxes in a form both looking at the same table.
When I select info for the 1st box I want the second box to update with the same information. The code I currently have is:
This isn't working. Am I right in the 0 being the first row of data, 1 being the second row etc?
Any help as to where I am going wrong would be great!
Thanks
I have two drop down boxes in a form both looking at the same table.
When I select info for the 1st box I want the second box to update with the same information. The code I currently have is:
Code:
Private Sub Ctl1_Person_Responsible_AfterUpdate() If "Ctl1_Person_Responsible" = 0 Then Ctl2_Person_Responsible.Enabled = 0 End If End Sub
This isn't working. Am I right in the 0 being the first row of data, 1 being the second row etc?
Any help as to where I am going wrong would be great!
Thanks
Comment