ACC: "A Module is Not a Valid Type" Compile Error MessageID: Q138018
|
Moderate: Requires basic macro, coding, and interoperability skills.
When you compile a database in Microsoft Access 7.0 or 97, you may receive
the following error message:
A Module is not a valid type.
The module has the same name as a Microsoft Access object or a data access
object, and it contains a variable declared as the same object type as its
name. For example, if the module is named Form, you will receive the error
message if any of the module's procedures contains a form variable such as
the following:
Dim f as Form
Rename the module to a name other than a Microsoft Access object name or a data access object name.
Microsoft has confirmed this to be a problem in Microsoft Access 7.0 and 97.
Option Explicit
Function Test(F as Form)
msgbox "Form Name: " & F.Name
End Function
A Module is not a valid type.
For more information about naming conventions, search the Help Index for "naming conventions," or ask the Microsoft Access 97 Office Assistant.
Keywords : kberrmsg CnvOthr
Version : 7.0 97
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: May 3, 1999