Difference Between Modules and Macros

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

I am curious on the difference between Modules and
Macros. Can some one give me a brief description on each
and tell me when I should write one.
 
Chris said:
I am curious on the difference between Modules and
Macros. Can some one give me a brief description on each
and tell me when I should write one.


A good Access book provides a lot better explaination of
this kind of stuff than you can get from newsgroup posts.

A module is a container for VBA code procedures, which are
far, far and away more powerful than macros. In general you
should never use a macro if there's a way to do the job in
VBA. There are only a couple of exceptions, AutoKeys and
AutoExec.
 
Back
Top