I'm trying to open a Form from code to execute some code I have on the "ON CURRENT" Event. I'm trying to accomplish this via:
DoCmd.OpenForm "FRM_Main", acNormal, "", "", , acNormal
But the Form does not open and the line of code goes to the line right after this one instead of jumping to:
Private Sub Form_Current()
Am I doing something wrong? Is there another way of accomplishing this?
Thank you!
Andres
DoCmd.OpenForm "FRM_Main", acNormal, "", "", , acNormal
But the Form does not open and the line of code goes to the line right after this one instead of jumping to:
Private Sub Form_Current()
Am I doing something wrong? Is there another way of accomplishing this?
Thank you!
Andres