Hii All
I have a problem in my form
as my form contain a check mark "check" that when click on it there is a summation performed to "vsum"
i used :=:SYSTEM.CURSOR_RECORD to store the record that i check on it
so that i can return to it after check
there problem is that when i check it return to same record
but that record is shifted up and the mouse now is on another record and the scroll move down
here is the code
DECLARE
vSUM NUMBER :=0;
vCURRECORD NUMBER;
BEGIN
vCURRECORD :=:SYSTEM.CURSOR_RECORD;
GO_BLOCK ('GBILLPAXX');
FIRST_RECORD;
LOOP
IF (:CHECK = 'Y') THEN
vSUM :=vSUM + :VALUE;
END IF;
EXIT WHEN (:SYSTEM.LAST_RECORD = 'TRUE');
NEXT_RECORD;
END LOOP;
GO_RECORD (vCURRECORD);
how can i solve this
Thanks for everyone Helped and helping me