How to Scope Variable Declared in Event Code

Last reviewed: October 29, 1995
Article ID: Q138680
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0

SUMMARY

A variable declared in event code is not visible outside that code unless the variable is declared Public or you crate a new form property.

MORE INFORMATION

Variables declared in event code for objects are only visible to those objects at the time the event code is running. There are two ways to make variables visible to code outside a specific event.

Method One

Declare the variable Public. To do this, add the following line of code to the Load event of your form:

   Public X

Method Two

Create a custom property of the form. To do this, follow these steps:

  1. Create a form.

  2. On the Form menu, click New Property.

  3. In the Name box, type X.

  4. On the Other tab of the form's Property sheet locate your new property (X), and select it.

  5. Type the words, "Hello World" (without the quotation marks), and press ENTER.

  6. Add a command button to your form.

  7. In the Click event of the command button, enter the following line of code:

    WAIT WINDOW THISFORM.X

  8. Run your form.

  9. Click the command button. The wait window displays: Hello World.

Step-by-Step Example

  1. Create a form.

  2. In the Load event of the form, add the following line of code:

    X = "Hello World"

  3. Add a command button to your form.

  4. In the Click event of the command button, add the following line of code:

    WAIT WINDOW X

    An error occurs that states: Variable 'X' is not found.


Additional reference words: 3.00 VFoxWin
KBCategory: kbtool kbhowto kbcode
KBSubcategory: FxtoolFormdes


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: October 29, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.