this function can have option ?
sample : FOR NOT DELETED()
FW_CdxCreate()
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
FW_CdxCreate()
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: FW_CdxCreate()
??????nageswaragunupudi wrote:No, please.
why ?
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: FW_CdxCreate()
for me this expr is wrong
if lMemory
INDEX ON RECNO() TAG RECYCLE FOR DELETED() MEMORY ADDITIVE
else
INDEX ON RECNO() TAG RECYCLE FOR DELETED()
endif
what need index a dbf for the records deleted ?
I need to index dbf for .not. deleted() !!!!
if lMemory
INDEX ON RECNO() TAG RECYCLE FOR DELETED() MEMORY ADDITIVE
else
INDEX ON RECNO() TAG RECYCLE FOR DELETED()
endif
what need index a dbf for the records deleted ?
I need to index dbf for .not. deleted() !!!!
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: FW_CdxCreate()
Why is it WRONG?for me this expr is wrong
This index is created if and only if the programmer has set FW_SetRecycleDeleted( .t. ) and this index is used for recycling deleted records. In your case, this index is not created because you did not choose recycling by setting this flag.what need index a dbf for the records deleted ?
Then, instead of using FW_CdxCreate() function, please create indexes directly, as you have been doing it now.I need to index dbf for .not. deleted() !!!!
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
- Silvio.Falconi
- Posts: 4956
- Joined: Thu Oct 18, 2012 7:17 pm
Re: FW_CdxCreate()
Nages, I was making a small dbu for myself and thought fw_createcdx could be useful to me
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC