The information in this article applies to:
SUMMARYThis article offers suggestions for using variables and data types in Microsoft Visual Basic for Applications in the applications listed at the beginning of this article. MORE INFORMATION
When declaring variables, the default data type is Variant. Programmers
should ideally specify specific data types and not use the Variant data
types. Variant data types consume more memory, do not offer the same
performance as specific data types, and can promote errors in programming
logic.
This syntax may appear to be declaring two Object variables, but in this
case oVar1 is being implicitly declared as a Variant (the default data
type) and oVar2 is being explicitly declared as an Object. The following
code will produce two Object variables:
-or-
For more information about dimensioning variables, from the Visual Basic
Editor, click the Office Assistant, type Declaring Variables, click
Search, and then click to view "Declaring Variables."
NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If the Assistant is not able to answer your query, please see the following article in the Microsoft Knowledge Base: Q176476 OFF: Office Assistant Not Answering Visual Basic Questions REFERENCESFor more information about getting help with Visual Basic for Applications, please see the following article in the Microsoft Knowledge Base: Q163435 VBA: Programming Resources for Visual Basic for Applications Additional query words: wordcon vb vba vbe
Keywords : kbdta kbdtacode word8 kbwordvba word97 |
Last Reviewed: October 19, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |