Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How can I check to see if an array has been created?
Message
 
 
À
11/10/2001 23:57:39
Peter Brama
West Pointe Enterprises
Detroit, Michigan, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00567404
Message ID:
00567406
Vues:
18
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--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform