Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Store Command
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Titre:
Divers
Thread ID:
00546986
Message ID:
00547000
Vues:
14
>lcSomeVariable  = ""
>....
>lcVarName = "lcSomeVariable"
>Store "Some String" TO ( lcVarName )
>? lcSomeVariable     && Displays 'Some String'


The multiple variable assigns is good with STORE, but the above can be do this way too:
lcSomeVar = ""
lcVarName = "lcSomeVar"
&lcVarName = "Some String"
? lcSomeVar       && Displays 'Some String'
But forget the & and you will have problems < s >, so STORE could save you headaches.
- Erik Niese-Petersen

Crazy Dane in USA.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform