Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Compilation problems
Message
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Compilation problems
Divers
Thread ID:
00529517
Message ID:
00529517
Vues:
44
This function below is in a procedure file in a project. When I build the exe, I get 2 warnings saying it can't locate "taSource" and "taDestin". It still compiles correctly, but is there a way to avoid this?

*****************************
FUNCTION CreateFileDateArray
*****************************
PARAM taSource,taDestin
LOCAL i,lcString
FOR i = 1 TO ALEN(taSource,1)
taDestin[i,2] = taSource[i,1]
lcString = SUBSTR(taSource[i,1],AT("_",taSource[i,1]) + 1,8)
taDestin[i,1] = ParseArrayDate(lcString,"99/99/9999",.F.)
ENDFOR
ASORT(taDestin)
RETURN .T.
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform