What is a Module

S

Sean

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

Any examples would be helpful

Thanks,
Sean
 
M

Marshall Barton

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top