Solved eval and form

AngelMiguel

New member
Local time
Today, 00:57
Joined
Nov 2, 2018
Messages
11
hey this part on function no work ¿?
Purpose: closing a form opens the form whose name is stored in openargs

If isOpen(Me.OpenArgs) Then
Eval("Form_" & Me.OpenArgs & ".Visible") = True
Else
DoCmd.OpenForm Eval(Me.OpenArgs), , , , , , Me.Name
End If
 
Maybe this will help:
Code:
Forms(Me.OpenArgs).Visible = True
 

Users who are viewing this thread

Back
Top Bottom