Solved eval and form (1 Viewer)

AngelMiguel

New member
Local time
Today, 12:45
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
 

sonic8

AWF VIP
Local time
Today, 21:45
Joined
Oct 27, 2015
Messages
1,000
Maybe this will help:
Code:
Forms(Me.OpenArgs).Visible = True
 

Users who are viewing this thread

Top Bottom