Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Problen with array
Message
From
19/01/2011 03:48:32
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows 7
Network:
Windows 2008 Server
Database:
Visual FoxPro
Application:
Desktop
Miscellaneous
Thread ID:
01496518
Message ID:
01496528
Views:
71
The message means that you are accessing the array somewhere in your code and that the compiler cannot find where it has been declared

Add the following line before the adir()
local laDir[1]
 >lnFiles = ADIR(laDir, '&mRutaXML\*.xml')
I think the following will work as well
external array laDir

 >lnFiles = ADIR(laDir, '&mRutaXML\*.xml')


>Code in my application
>
>lnFiles = ADIR(laDir, '&mRutaXML\*.xml')
>
>
>When build a exe file:
> Unable to find unknown LADIR Loctae, Ignore, Ignore all, Cancel
Gregory
Previous
Reply
Map
View

Click here to load this message in the networking platform