Form/Module Code Question
On Jun 28, 1:02 am, Les wrote:
Not being a trained programmer, I was just wondering if it is good practice
to write all the code in the form code section or is it better to jump from
the form code to a module to do the work after clicking on a command button
on the form ??
--
Les
Being a self-taught (although Microsoft certified - FWIIW) trainer, I
usually tell people to place their shared code in the module, and
place form-specific code in the form. That way they can simply move
the form to another project without having to take the module as well.
Less code bloat and more modular are my catchcries.
- David
|