Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How can I check to see if an array has been created?
Message
 
 
To
11/10/2001 23:57:39
Peter Brama
West Pointe Enterprises
Detroit, Michigan, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00567404
Message ID:
00567406
Views:
17
This message has been marked as the solution to the initial question of the thread.
>I am using an array in a program and on the first pass through a method, it is possible that the array hasn't been created yet (the routine is primarily for subsequent passes). Of course I get an error when I do a ALEN on the non-existant array. I have tried various commands to see if I can check for it but they all generate an error. Is there a command that can tell if an array (or variable of anytype), exists without generating an error?

You can use TYPE() function to do that. Notice quotes around variable name.
IF TYPE("myvariable") = "U"
  * Variable/array myvariable doesn't exist
ELSE
  * It exist
ENDIF
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform