I am having a problem passing an object variable to a subroutine. Could you please look at this example and help me understand what’s wrong? I am using Access 97 SR2.
Public Function FirstProcedure()
Dim MyFrm as Form
Set MyFrm = Screen.ActiveForm
‘FirstProcedure code
‘Call SecondProcedure
SecondProcedure(MyFrm)'<Type mismatch error occurs here
End Function
Sub SecondProcedure( frm As Form )
Dim ctl As Control
For Each ctl In frm.Controls
'Code for manipulating frm.Controls
Next ctl
End Sub
The examples in help that I can find show using the Me keyword to pass the object to the subroutine. However, I want to place the code in a standard module so that is why I used Screen.ActiveForm.
The error I get by doing it this way is "Type Mismatch". What's wrong?
Thanks for your help,
MorrisK