Using the FoxPro dialect, my code is:
CREATE _tmpstructure
append blank
Checking the CurrentWorkArea data in the watch window, my recno for _tmpstructure is now -13 and the reccount is -13 as well.Obviously neither recno not reccount should be a negative number, so am I doing something wrong?
recno = -13
-
- Posts: 774
- Joined: Wed May 17, 2017 8:50 am
- Location: Germany
recno = -13
Hi Kevin,
it seems to be a "DBFVFP" driver issue, because when i use the "DBFCDX" or "DBFNTX" driver the results are ok.
You should open a GitHub ticket to get it fixed.
regards
Karl-Heinz
it seems to be a "DBFVFP" driver issue, because when i use the "DBFCDX" or "DBFNTX" driver the results are ok.
Code: Select all
LOCAL i AS INT
i := 1
DO CASE
CASE i == 1
RddSetDefault ( "DBFVFP")
CASE i == 2
RddSetDefault ( "DBFNTX")
CASE i == 3
RddSetDefault ( "DBFCDX")
END CASE
CREATE _tmpstructure
append blank
// "DBFVFP" results are 4294967283 , -13
// otherwise 1 , 1
? RecNo() , RecCount()
regards
Karl-Heinz
recno = -13
Thanks guys, problem confirmed and logged: https://github.com/X-Sharp/XSharpPublic/issues/296
Chris Pyrgas
XSharp Development Team
chris(at)xsharp.eu
XSharp Development Team
chris(at)xsharp.eu