ACC97: IsMissing() Returns False for Non-Variant Data Types (162534)
The information in this article applies to:
This article was previously published under Q162534 Advanced: Requires expert coding, interoperability, and multiuser skills.
SYMPTOMS
When you pass optional arguments that are of a data type other than
Variant to a Visual Basic for Applications function, the IsMissing()
function returns a value of False for those Optional arguments.
This is perceived as a problem because IsMissing() will return False for
any non-Variant data type, regardless of whether an optional argument is
passed or not.
CAUSE
The IsMissing() function is used to detect whether or not optional Variant
arguments have been provided in calling a procedure. It will always return
False for non-Variant data types.
RESOLUTION
This article assumes that you are familiar with Visual Basic for
Applications and with creating Microsoft Access applications using the
programming tools provided with Microsoft Access. For more information
about Visual Basic for Applications, please refer to the "Building
Applications with Microsoft Access 97" manual.
Initialize your optional non-Variant variables with a default value when
defining the function. The following is an example declaration of a
function, including the initialization of an Optional string argument with
a default value of "Empty String":
Public Function Test(Optional str1 As String = "Empty String", _
Optional var2 As Variant)
REFERENCES
For more information about using optional arguments in procedures, search
the Help Index for "Optional Keyword."
For more information about understanding optional arguments, search the
Help Index for "Optional arguments, Understanding Named Arguments and
Optional Arguments."
For more information about using the IsMissing() function, search the Help
Index for "IsMissing Function."
Modification Type: | Minor | Last Reviewed: | 10/11/2006 |
---|
Keywords: | kbenv kbprb kbProgramming KB162534 |
---|
|