H
HAL2100again
Guest
I have some code saved as a module which I will call to modify different forms.
I would like to set the form name in code associated with the form from which it is called.
How do I do this?
I've been trying to use the Set Statement to set the variable 'blobby' on the form on which I want the module to act.
Dim blobby As Form
Set blobby = Forms![FormName]
Call ModuleName
But this doesn't get passed to the module.
I would like to set the form name in code associated with the form from which it is called.
How do I do this?
I've been trying to use the Set Statement to set the variable 'blobby' on the form on which I want the module to act.
Dim blobby As Form
Set blobby = Forms![FormName]
Call ModuleName
But this doesn't get passed to the module.