Hello.
I have problem setting cursor-offset in on leave event of tty. Need help.
openedge 12.2 win64 tty
	
	
	
		
				
			I have problem setting cursor-offset in on leave event of tty. Need help.
openedge 12.2 win64 tty
		Code:
	
	ON LEAVE OF cfrm-store IN FRAME fmnu
DO:
   DO ON ERROR UNDO, RETURN NO-APPLY:
     ASSIGN cfrm-store.
     icfs = chk_store(cfrm-store).
     IF icfs = 0 THEN
        LEAVE.       
      SELF:CURSOR-OFFSET = icfs.           
      RETURN NO-APPLY.
   END.
END.