ACC: Echo Action Without Any Argument Causes Error
ID: Q101126
|
The information in this article applies to:
-
Microsoft Access versions 1.0, 1.1, 2.0, 7.0, 97
SYMPTOMS
Moderate: Requires basic macro, coding, and interoperability skills.
In Microsoft Access 7.0 and 97, if you leave the Echo On argument
out of the Echo action in a module, you may receive the error message,
"Argument Not Optional."
In Microsoft Access 1.x and 2.0, if you leave the Echo On argument
out of the Echo action in a module, you may receive the error message,
"Expected: Expression."
RESOLUTION
Although the Microsoft Access Help system states that the default
argument for the Echo action is Yes, you must include the argument in
the line of code in order for the action to run properly.
MORE INFORMATION
Steps to Reproduce Behavior
In Microsoft Access 7.0 and 97:
- Open the sample database Northwind.mdb.
- Create a new module.
- Enter the following code in the Module window:
'---------------------------------------------------------------
' The following function will produce the syntax error mentioned
' in the "Symptoms" section.
'---------------------------------------------------------------
Function Test()
Docmd.Echo ' Note that the arguments are missing.
End Function
- On the Run menu, click Compile Loaded Modules.
In Microsoft Access versions 1.x and 2.0:
- Open the sample database NWIND.MDB.
- Create a new module.
- Enter the following code in the Module window:
'--------------------------------------------------------------
'The following function will produce the syntax error mentioned
'in the "Symptoms" section.
'--------------------------------------------------------------
Function Test()
Docmd Echo ' Note that the arguments are missing.
End Function
REFERENCES
For more information about the Echo action, search the Help Index for
"Echo," and then "Echo Action," or ask the Microsoft Access 97 Office
Assistant.
Keywords : McrArg
Version : 1.0 1.1 2.0 7.0 97
Platform : WINDOWS
Issue type : kbprb