Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VFP 5.0 - Dataenvironment - Finding open tables
Message
From
16/12/1996 09:14:19
 
 
To
13/12/1996 18:04:57
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00015076
Message ID:
00015193
Views:
31
>>If Dataenvironment.AutoOpenTables=.t. all tables are open unless you close them manually. Otherwise if AutoOpenTables=.f. all tables are closed until you call Dataenvironment.Opentables and again all tables will be open.
>>If you want to check dataenvironment for not only current form but also for some parent form you can just check cursor names (store them in array?) from both Dataenvironments.
>
>
>Thats exactly what I need to know how to do. Is how to check the DataEnvironment for the cursors?

Sorry, I was off for weekend. You can check any Dataenvironment.Cursor.Alias properties. So firstly you going through all cursors:

cNumber="1"
do while type(formname.dataenvironment.cursor&cNumber.)="O"
aTablenames[val(cNumber)]= ;
formname.dataenvironment.cursor&cNumber..name
cNumber=alltrim(str(val(cNumber)+1))
enddo
Edward Pikman
Independent Consultant
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform