According to the solution that was given by @MajP in this thread I use the following structure to access the methods or objects on a form;
While this method works, I don't know how to see the list of methods or objects of a form when the form is passed as a parameter to a function.
How can I see the list of methods of a form when the form is passed to a function?
Any Kind of help is appreciated.
Code:
Dim frm as Form_MyFormName
set frm = forms("YourFormName")
With frm
. ---> List of methods are included in intellisense
End With
While this method works, I don't know how to see the list of methods or objects of a form when the form is passed as a parameter to a function.
Code:
Public Function Drawings(frm As Access.Form)
With frm
. ---> List of methods are not included in intellisense
End With
End Function
How can I see the list of methods of a form when the form is passed to a function?
Any Kind of help is appreciated.