schniesich
Technical User
Hello,
I created a grid that can be sorted with a headers-click-event:
That works quite well, but the datapointer does not remain on the same recno(), it jumps from click to click to differnet recno's.
This one also works perfectly:
To remenber the last current recno() I tried this:
That work only when using the debugger and running step by step, but won't run/work when running the form without the debugger.
Does anyone has an idea how to get the current recno() to be displayed after setting the new order in a grid?
Thanks for help
Carsten.
I created a grid that can be sorted with a headers-click-event:
Code:
set order to xxx
thisform.refresh
This one also works perfectly:
Code:
set order to xxx
go top && or go bottom
thisform.refresh
Code:
store recno() to act_rec
set order to xxx
goto (act_rec)
thisform.refresh
Does anyone has an idea how to get the current recno() to be displayed after setting the new order in a grid?
Thanks for help
Carsten.