Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Compilation problems
Message
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Compilation problems
Miscellaneous
Thread ID:
00529517
Message ID:
00529517
Views:
42
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.
Next
Reply
Map
View

Click here to load this message in the networking platform