ivonsurf123
Registered User.
- Local time
- Today, 01:38
- Joined
- Dec 8, 2017
- Messages
- 69
Hello,
I am trying to pass a value from one form (comboBox) to another form (ComboBox) where the value is on frm_BankHolidays and the combobox that I need to add that value from the other form is Based, the form name is frm_Register_New_Employee. I am not sure if I am using a wrong reference and /or the wrong event as well. Please help.
I am trying to pass a value from one form (comboBox) to another form (ComboBox) where the value is on frm_BankHolidays and the combobox that I need to add that value from the other form is Based, the form name is frm_Register_New_Employee. I am not sure if I am using a wrong reference and /or the wrong event as well. Please help.
Code:
Private Sub Form_Load()
Me.Based.RowSource = [Forms]![frm_BankHolidays]![cboCountry].[RecordSource]
End Sub