Code behind the Forms

knowledge76

Registered User.
Local time
Today, 23:03
Joined
Jan 20, 2005
Messages
165
I am using a big application and also new to Access... i am a bit confused but people are the prob solvers.So the code that is written behind the form........is that shown in the module list or it is just visible behind the form?
 
In simplest terms - Code attached to forms and reports do not appear in the modules tab.

Code attached to a form is part of a form's Class Module and all code therein is exclusive to that form alone.

Code attached to a report is part of a report's Class Module and all code therein is exclusive to that report alone.

Code in the modules tab is not bound to any object and is therefore usable by all components (where possible) within the database. These are standalone modules or Class modules.
 
Thanks a lot.......
 

Users who are viewing this thread

Back
Top Bottom