Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Opening all dbfs in a directory
Message
From
18/10/2013 15:19:56
 
 
To
18/10/2013 13:28:38
Mike Yearwood
Toronto, Ontario, Canada
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2012
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01585571
Message ID:
01585844
Views:
99
LOCAL lnI, laDbfs[1]

CREATE CURSOR badTables ;
( ;
    cName     c(40), ;
    cMessage  c(200) ;
)

SELECT 0
ADIR(laDbfs, "*.DBF")

ON ERROR INSERT INTO badTables VALUES(laDbfs[lnI,1], MESSAGE())
FOR lnI = 1 TO ALEN(laDbfs,1)
    USE (laDbfs[lnI,1])
NEXT
ON ERROR

SELECT badTables
GOTO TOP
BROWSE NOWAIT
CANCEL
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform