After opening up a form I populate the combo box value using the following code:
DoCmd.OpenForm "Notes"
Forms!Notes!cmb_ProjectStatus.Value = Module1.ProjectStatus
Everything works fine until I split the database to front and back end.
Once I do that the combo box does not populate.
Any idea why and how I can fix it?
DoCmd.OpenForm "Notes"
Forms!Notes!cmb_ProjectStatus.Value = Module1.ProjectStatus
Everything works fine until I split the database to front and back end.
Once I do that the combo box does not populate.
Any idea why and how I can fix it?