when i run loop on datawindow it move from row 1 to last page row and scroll to another page
but i need to move from row to next row but not using scroll like when i deploy project i need datawindow same
when i run loop on datawindow it move from row 1 to last page row and scroll to another page
but i need to move from row to next row but not using scroll like when i deploy project i need datawindow same
Hi, Mahmoud -
Please try the attached sample app to see if it does what you are looking for.
This technique may not work for a grouped DataWindow (like the one in your video), because sorting of the rows and a GroupCalc() function call may be required after a row is appended.
Best regards, John
Hi.
Can you provide the code so we can see what you do? Simply show us the loop and how you manipulate your datawindow.
Andreas.
nothing change
FOR ll_row = ll_first_row TO ll_last_row
ll_rc = dw.SetRedraw (TRUE)
ll_rc = ScrollToRow (ll_row)
ll_rc = dw.SetRedraw (FALSE)
... do processing
NEXT