I have a table the list available forms with three feilds (ID, Title, FormName)
I have created a form with a combobox (Combo13) that lists the titles of the available forms.
I have created a button that when clicked it should open the correct form.
I've entered the following code, but it's not working.
Dim strForm As String
strForm = DLookup("FormName", "RegTallyForms", "Title = '" & Forms!RegTallyForms!Combo13 & "'")
DoCmd.Close
DoCmd.OpenForm strForm
Any suggestions?