What is a Module

  • Thread starter Thread starter Sean
  • Start date Start date
S

Sean

I was always wondering what is a module and what is it
used for.

Any examples would be helpful

Thanks,
Sean
 
Sean said:
I was always wondering what is a module and what is it
used for.


A module is a container object where you put your VBA code.
THere are two kinds of modules, Standard and Class. A
standard module just contains a collection of VBA
declarations and procedures. A class module (including the
modules behind forms and reports) defines the properties,
methods and events of the class object.

I seriously doubt if that's much help to you, but you're not
likely to get much of a tutorial in a newsgroup post. The
easiest examples for you to get to are in the Northwind
sample database that's included with every version of
Access.
 
Back
Top