R
RLN
Re: Access 2003
I learned recently that writing all vba code out in modules and referencing
form objects out there is better as opposed to the code residing inside the
form object in order to protect your code if your objects should get
corrupted.
Is this a good practice?
Example:
A module called basFormMainStartup that has the forms startup code...
vs....
Private Sub Form_Load() (which is inside the form Load event of the object
itself)
Anyone with opinions on this?
Thanks.
I learned recently that writing all vba code out in modules and referencing
form objects out there is better as opposed to the code residing inside the
form object in order to protect your code if your objects should get
corrupted.
Is this a good practice?
Example:
A module called basFormMainStartup that has the forms startup code...
vs....
Private Sub Form_Load() (which is inside the form Load event of the object
itself)
Anyone with opinions on this?
Thanks.