Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Grid problem. Is this bug or by design?
Message
From
11/08/2005 10:36:57
 
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 9
Database:
MS SQL Server
Miscellaneous
Thread ID:
01040046
Message ID:
01040240
Views:
15
The approach with zapping the cursor won't work. This is a buffered cursor and you can't zap it.

Yes it will:
SELECT SomeFields WHERE SomeCondition INTO CURSOR qTmp NOFILTER
lnBuffering = CURSORGETPROP( [Buffering], This.RecordSource )
CURSORSETPROP( [Buffering], 3, This.RecordSource )
ZAP IN ( This.RecordSource )
CURSORSETPROP( [Buffering], lnBuffering, This.RecordSource )
SELECT ( This.RecordSource )
APPEND FROM DBF( [qTmp] )
GO TOP IN ( This.RecordSOurce )
This.Refresh()
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform