S
smk23
Is there a way to declare a variable whose scope is the entire form module?
For example, I want to set a form variable and not have to re-set it with
each procedure. I tried using a constant:
Private Const frm As Form= Me.frmBrCorrespondence2_Sub.form
as well as this in the form module header:
Dim frm as form
Set frm=Me.frmBrCorrespondence2_Sub.form
Neither approach flys. Is there a way to do this?
Thanks,
Sam
For example, I want to set a form variable and not have to re-set it with
each procedure. I tried using a constant:
Private Const frm As Form= Me.frmBrCorrespondence2_Sub.form
as well as this in the form module header:
Dim frm as form
Set frm=Me.frmBrCorrespondence2_Sub.form
Neither approach flys. Is there a way to do this?
Thanks,
Sam