Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Use bbListView or Grid or others?
Message
From
09/07/2001 09:39:55
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
General information
Forum:
Visual FoxPro
Category:
Classes - VCX
Miscellaneous
Thread ID:
00526231
Message ID:
00528075
Views:
19
>Cetin,
>
>Thank you for the info on Foxy Classes. I will check them out if the bbListView I'm currently trying doesn't work out.
>
>Yes, on the VFP 7.0, I meant directly editing RW Cursors.
>
>Thanks .
>
>Elgin

For RW cursor you need a true cursor creation. In fox2x to do that either you needed a nonexistant field or an expression forcing it. ie:

select last_name, first_name, last_name+first_name as NewField ;
from customer ;
into cursor myTrueCursor

select last_name, first_name ;
from customer ;
where .t. ;
into cursor myTrueCursor

In VFP there is 'nofilter' clause :
select last_name, first_name ;
from customer ;
into cursor myTrueCursor nofilter
select * from customer ;
  into cursor myTrueCursor nofilter
use dbf('myTrueCursor') in 0 again alias crsRW
use in ('myTrueCursor')
select crsRW && Editable
Of course VFP7 making all these into a oneliner is much better :)
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Reply
Map
View

Click here to load this message in the networking platform