MS Access objects include all the items that can be seen in the database window as well as the things those items contain.
Top Level Objects
- table
-
An object to define and store data. It is a collection of fields (columns) and records (rows), the cells (intersections) of which are used to define and store instances about a particular subject. Tables can have a primary key to make each record unique. Tables can utilize indexes to speed data retrieval. Tables are usually prefixed with tbl.
- query
-
An object that uses Access' graphical QBE (Query By Example) or SQL statements to select, update, insert, or delete data from table(s) and/or one or more other queries. Queries are usually prefixed with qry.
- form
-
An object to ease user data input, data display, and application interface. Forms can facilitate the generation of events that execute macros or procedures written in VBA. Forms are usually prefixed with frm. If used in VBA as a class, the name of the class for a specific form will follow this syntax:
Form_frmName.
- report
-
An object for formatting, calculating, printing, and summarizing queried data. Reports are usually prefixed with rpt. If used in VBA as a class, the name of the class for a specific report will follow this syntax:
Form_rptName.
- macro
-
An object which structures specific actions in response to specific conditions or events, such as printing a report when a button is pressed. Macros are usually prefixed with mcr.
- module
-
An object holding a custom mini-program written in VBA (Visual Basic for Access). Modules have more abilities than macros, including the ability to be stand-alone objects and the ability to respond to a greater variety of events. Modules are usually prefixed with mod.
Other Objects
Page Modified: (Hand noted: 2007-10-12 18:25:15Z) (Auto noted: 2007-11-17 06:45:38Z)