Olaf Doschke
Programmer
Hi all,
execute this:
Now choose the second, empty record and press DEL.
Or: Clear all records, then type "Hello" in the first record, press DOWNARROW and DEL alternatingly and you get "ello" and "llo" in the second and third line.
This was reported by Bernhard Sander in the German Foxpro user group and could be verified by others including me.
I still wonder if it is a bug of varchar or the browse window. The impact may be small, but on the other hand I don't see a real benefit of varchars when not using a remote database. DBFs don't get shrinked in size and the only thing a varchar field does is an automatic RTRIM() when accessing the field.
Bye, Olaf.
execute this:
Code:
CREATE TABLE curDeltest (vText V(30))
INSERT INTO curDeltest values(Sys(2015))
INSERT INTO curDeltest values("")
INSERT INTO curDeltest values(Sys(2015))
GO TOP
BROWSE NOWAIT
Now choose the second, empty record and press DEL.
Or: Clear all records, then type "Hello" in the first record, press DOWNARROW and DEL alternatingly and you get "ello" and "llo" in the second and third line.
This was reported by Bernhard Sander in the German Foxpro user group and could be verified by others including me.
I still wonder if it is a bug of varchar or the browse window. The impact may be small, but on the other hand I don't see a real benefit of varchars when not using a remote database. DBFs don't get shrinked in size and the only thing a varchar field does is an automatic RTRIM() when accessing the field.
Bye, Olaf.