How to Use Macro Substitution in Object Referencing

Last reviewed: August 1, 1995
Article ID: Q133452
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0

SUMMARY

Macro substitution treats the contents of a memory variable or array element as a character string literal. When an ampersand (&) precedes a Character-type memory variable or array element, the contents of the variable or element replace the macro reference. You can use macro substitution in any command or function that accepts a character string literal.

MORE INFORMATION

In the Language Reference, page 8, the (&) Ampersand command is explained. One area of amplification to the Macro Substitution command is the .cExpression, which allows for a continuation of the command.

Here is an example showing how objects can be referenced using macro substitution:

   frmForm = CREATEOBJECT("Form")
   frmForm.SHOW
   X="frmForm"
   cMemvarIs="Visible"
   &X.&cMemvarIs =.F. && Nothing happens due to improper syntax
   &X..&cMemvarIs=.F. && The form should disappear
   WAIT WINDOW "Form should have disappeared."
   madd="AddObject"
   &X..Visible=.T. && The form should reappear
   &X..&madd("cmdMyButton2","cmdMyButton")
   myb="cmdMyButton2"
   &X..&myb..&mvis=.t.
   READ EVENTS

   DEFINE CLASS cmdMyButton AS CommandButton
      PROCEDURE Click
      ThisForm.RELEASE
      CLEAR EVENTS
      ENDPROC
   ENDDEFINE


Additional reference words: 3.00 VFoxWin
KBCategory: kbprg kbcode
KBSubcategory: FxprgGeneral


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: August 1, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.