On one of my forms I have a command button that opens a pop-up form. When the pop-up form opens, I am able to share a few values from the previous form (the form not in focus) in text boxes through the On Load event trigger.
I have a combobox on the pop-up form that has two values (Flat Fee and Hourly Rate). I tried coding the After Update event so that if Flat Fee is chosen the Fee textbox is populated with the fourth column in a combobox from the out of focus form.
This does not work. Is there a way to make it work? Trigger from a different event?
Thanks in advance.
I have a combobox on the pop-up form that has two values (Flat Fee and Hourly Rate). I tried coding the After Update event so that if Flat Fee is chosen the Fee textbox is populated with the fourth column in a combobox from the out of focus form.
Code:
if Me!cboFeeType.Value = "Flat Fee" Then
Me!txtFee = Forms!frmClass!cboInstructor.Column(3)
This does not work. Is there a way to make it work? Trigger from a different event?
Thanks in advance.