When a wizard or builder is installed by the
Add-in Manager, new entries or keys are created in the Windows Registry. The
values for these keys are stored in the USysRegInfo table. For this reason, the
USysRegInfo table must have only four fields with the following names and data
types:
Field Name | Data Type | Field Size |
---|
Subkey | Text | 255 |
Type | Number | Long Integer |
ValName | Text | 255 |
Value | Text | 255 |
The Type field specifies the type of registry entry: key (0),
string (1), or DWORD (4).
The subkey entries in the USysRegInfo
table will always begin with either HKEY_CURRENT_ACCESS_PROFILE or
HKEY_LOCAL_MACHINE. If a user profile is in use when the Add-In Manager is
invoked and the subkey entries begin with HKEY_CURRENT_ACCESS_PROFILE, then
registry entries will be created under the keys for that particular profile. If
no profile is in use at the time, then the registry entries will be created
under HKEY_LOCAL_MACHINE. If HKEY_LOCAL_MACHINE is used instead, registry
entries will always be written below HKEY_LOCAL_MACHINE.
NOTE: You do not have to create the USysRegInfo records in the same
order that the guidelines in this article present. However, the first record
that you create for each wizard should always be the record that has a 0 in the
Type field and blanks in the ValName and Value fields.
Procedures to Create USysRegInfo Records for Menu Add-ins
NOTE: This article assumes that HKEY_CURRENT_ACCESS_PROFILE will be
used to begin the text for all the subkey field values but, if appropriate for
your wizard, this may be changed to HKEY_LOCAL_MACHINE.
- Four records must be added to the USysRegInfo table. The
values in the subkey field for all four records should be:
HKEY_CURRENT_ACCESS_PROFILE\Menu Add-ins\<Menu Add-in Name>
Replace <Menu Add-in Name> with the name that you want to
appear in the Add-ins submenu of the Access user interface. This is also the
name of the registry key where values are written. - The first of the four records should have 0 for the Type
field and the ValName and Value fields should be blank. This record simply
signifies to the Add-in Manager that registry keys will be added. This applies to each type of
wizard described in this article.
- The second record should have a 1
in the Type field and Expression in the ValName field.
The Value field should have an equals sign, followed by the name of the
function that will start the Menu Add-in. For example:
=Sample_Menu_Addin()
NOTE: If the equal sign is missing, Access tries to run a macro in the
user's database rather than a function in the add-in database.
- The third record should have a 1 in the Type field and
Library in the ValName field. The Value field should
contain the path and name of the add-in database. The path is represented by
|ACCDIR\, which signifies the path to the folder where
Access is installed. For example:
|ACCDIR\wzaddin.mda
- The fourth record is new in Access 2000
or later version. It indicates in what
file types the Add-In should be visible. It should have a 1 in the Type field
and Version in the ValName field. The Value field should
contain one of the following integers:
1- Show this Add-in in MDBs (Jet) only (default).
2- Show this Add-in in ADPs (Client/Server) only.
3- Show this Add-in in both MDBs (Jet) and ADPs (Client/Server).
Procedures to Create USysRegInfo Records for Form and Report Wizards
NOTE: This article assumes that HKEY_CURRENT_ACCESS_PROFILE will be
used to begin the text for all the subkey field values but, if appropriate for
your wizard, this may be changed to HKEY_LOCAL_MACHINE.
- You must add eight records to the USysRegInfo table to
define the registry values for form and report wizards. The values in the
subkey fields for all the records should be:
HKEY_CURRENT_ACCESS_PROFILE\Wizards\<WizardType>\<WizardName>
The <WizardType> can be Form Wizards or Report Wizards.
<WizardName> is the name that you want to display in the New Object dialog box (where the user chooses which wizard to run) and it is
also the name of the registry key where values will be written. - The first of the eight records should have
0 for the Type field and the ValName and Value fields
should be blank. This record simply signifies to the Add-In Manager that
registry keys will be added. This applies to each type of wizard described in
this article.
- The second record should have a 1
in the Type field and the ValName field should have
Bitmap. The value field should contain the path to the
bitmap (.bmp) that is displayed above the description on the left side of the New Object dialog box. The wizard will still be installed if this record is
not included, but no graphic will appear in the New Object dialog box.
- The third record should have a 4 in
the Type field and the ValName field should have Datasource
Required. The value field can be either 1 or 0, and it defines
whether or not the user must choose a table or query from which the form or
report wizard will obtain its data. A value of 1 signifies that a table or
query must be chosen.
- The fourth record should have a 1
in the Type field and the ValName field should have
Description. The value field should contain user-defined
text that describes the wizard. The description is displayed on the left side
of the New Object dialog box.
- The fifth record should have a 1 in
the Type field and the ValName field should have
Function. The value field should contain the name of the
function that is used to start the wizard. Unlike Menu Add-ins, an equal sign
does not precede the function name and open and close parentheses should not
follow the function name.
- The sixth record should have a 4 in
the Type field and the ValName field should have Index.
The Value field should have a number that signifies the order in which the
wizard will appear in the wizards list in the New Object Dialog box. A value of 0 signifies the
first item in the list.
- The seventh record should have a 1
in the Type field and the ValName field should have
Library. The Value field should contain the path and
name of the add-in database. The path is represented by
|ACCDIR\, which signifies the path to the folder where
Access is installed. For example:
|ACCDIR\wzaddin.mda
- The eighth and final record indicates in what file types
the Add-in should be visible. It should have 1 in the
Type field and Version in the ValName field. The Value
field should contain one of the following integers:
1- Show this Add-in in MDBs (Jet) only (default).
2- Show this Add-in in ADPs (Client/Server) only.
3- Show this Add-in in both MDBs (Jet) and ADPs (Client/Server).
Procedures to Create USysRegInfo Records for Table and Query Wizards
NOTE: This article assumes that HKEY_CURRENT_ACCESS_PROFILE will be
used to begin the text for all the subkey field values; but, if appropriate for
your wizard, this may be changed to HKEY_LOCAL_MACHINE.
- You must add seven records to the USysRegInfo table to
define the registry values for table and query wizards. The values in the
subkey fields for all records should be:
HKEY_CURRENT_ACCESS_PROFILE\Wizards\<WizardType>\<WizardName>
The <WizardType> can be Query Wizards or Table Wizards.
<WizardName> is the name that you want to display in the New Object dialog box (where the user chooses which wizard to run) and it is
also the name of the registry key where values will be written. - The first of the seven records should have
0 for the Type field and the ValName and Value fields
should be blank. This record simply signifies to the Add-in Manager that
registry keys will be added. This applies to each type of wizard described in
this article.
- The second record should have a 1
in the Type field and the ValName field should have
Bitmap. The value field should contain the path to the
bitmap (.bmp) that is displayed above the description on the left side of the New Object dialog box. The wizard will still be installed if this record is
not included but no graphic will appear in the New Object dialog box.
- The third record should have a 1 in
the Type field and the ValName field should have
Description. The Value field should contain user-defined
text that describes the wizard. The description is displayed on the left side
of the New Object dialog box.
- The fourth record should have a 1
in the Type field and the ValName field should have
Function. The value field should contain the name of the
function that is used to start the wizard. Unlike Menu Add-ins, an equal sign
does not precede the function name and open and close parentheses should not
follow the function name.
- The fifth record should have a 4 in
the Type field and the ValName field should have Index.
The Value field should have a number that signifies the order in which the
wizard will appear in the wizards list in the New Object dialog box. A value of 0 signifies the
first item in the list.
- The sixth record should have a 1 in
the Type field and the ValName field should have
Library. The Value field should contain the path and
name of the add-in database. The path is represented by
|ACCDIR\, which signifies the path to the folder where
Access is installed. For example:
|ACCDIR\wzaddin.mda
- The seventh and final record indicates in what file types
the Add-in should be visible. It should have a 1 in the
Type field and Version in the ValName field. The Value
field should contain one of the following integers:
1- Show this Add-in in MDBs (Jet) only (default).
2- Show this Add-in in ADPs (Client/Server) only.
3- Show this Add-in in both MDBs (Jet) and ADPs (Client/Server).
Procedures to Create USysRegInfo Records for Control Wizards, Property Wizards, or OLE Custom Control Wizards
NOTE: This article assumes that HKEY_CURRENT_ACCESS_PROFILE will be
used to begin the text for all the subkey field values but, if appropriate for
your wizard, this may be changed to HKEY_LOCAL_MACHINE.
- You must add six records to the USysRegInfo table to
define the registry values for Control Wizards, Property Wizards, or OLE Custom
Control Wizards. The values in the subkey fields for all four records should
be:
HKEY_CURRENT_ACCESS_PROFILE\Wizards\<WizardType>\<SubType>\<WizardName>
The <WizardType> can be Control Wizards, Property Wizards,
or OLE CUSTOM CONTROL WIZARDS (must be in all uppercase). The <SubType>
will depend upon the <WizardType>.
The following are valid
subtypes for Control Wizards:
Label, TextBox, OptionGroup, ToggleButton, OptionButton, CheckBox,
ComboBox, ListBox, CommandButton, Image, UnboundObjectFrame,
BoundObjectFrame, PageBreak, SubformSubreport, Line, Rectangle
The following are examples of subtypes that can be used with
Property Wizards:
BackColor, BorderColor, FieldName, ForeColor, InputMask,
LinkChildFields, LinkMasterFields, MenuBar, Module, ODBCConnectStr,
Picture, ShortcutMenuBar
The subtype for OLE Custom Control Wizards is the Class property
of the OLE custom control. To see this value, open a form or report in Design
view, use the right mouse button to click the OLE custom control, click Properties, and then read the value in the Class box.
The <WizardName> is the name of the
registry key where values will be written. - The first of the six records should have
0 for the Type field and the ValName and Value fields
should be blank. This record simply signifies to the Add-in Manager that
registry keys will be added. This applies to each type of wizard described in
this article.
- The second record should have a 4 in
the Type field and the ValName field should have Can
Edit. The value field defines whether or not the wizard can be used
to modify an existing control or property or if it will only be used to write
new ones. A value of 1 signifies that the wizard can be
used to modify.
- The third record should have a 1 in
the Type field and the ValName field should have
Description. The value field should contain user-defined
text that describes the wizard. The description is displayed in the Choose Builder dialog box (if more than one wizard has been defined).
- The fourth record should have a 1 in
the Type field and the ValName field should have
Function. The Value field should contain the name of the
function used to start the wizard or builder. Unlike Menu Add-ins, an equal
sign does not precede the function name and open and close parentheses should
not follow the function name.
- The fifth record should have a 1 in
the Type field and the ValName field should have
Library. The value field should contain the path and
name of the add-in database. The path is represented by
|ACCDIR\, which signifies the path to the folder where
Access is installed. For example:
|ACCDIR\wzaddin.mda
- The sixth and final record indicates in what file types
the add-in should be visible. It should have a 1 in the
Type field and Version in the ValName field. The Value
field should contain one of the following integers:
1- Show this Add-in in MDBs (Jet) only (default).
2- Show this Add-in in ADPs (Client/Server) only.
3- Show this Add-in in both MDBs (Jet) and ADPs (Client/Server).
After you create the USysRegInfo table, a user can use the
Add-in Manager to install the wizards that you have created. To install the
wizards with the
Add-in Manager:
- On the Tools menu, point to Add-ins and then click Add-in Manager.
- Select the appropriate add-in from the list of available
add-ins. If the add-in database had not been copied to the user's Access
folder, it will not appear in the list. However, you can click Add New to locate the add-in database and select it. It is then copied to
the Access folder and subsequently appears in the available add-ins list.
- Click Install. The Add-in manager creates registry entries based on the
USysRegInfo table, and then your wizards are installed.