This is making me crazy...
What am I doing wrong or what should I do instead?
I'm trying to have strCreateRecordsCallback set by a property in the subform so I can have distinct names...
Maybe I should have a bunch of public procedures with the same name and avoid the application.run part?
Code:
Application.Run "Forms!" & Me.Name & "![subform Control].Form." & strCreateRecordsCallback 'Crashes
'Run Time error 2517 ... cannot find the procedure...
Code:
Forms!MEFormName![subform Control].Form.ProcedureInString 'Runs
What am I doing wrong or what should I do instead?
I'm trying to have strCreateRecordsCallback set by a property in the subform so I can have distinct names...
Maybe I should have a bunch of public procedures with the same name and avoid the application.run part?