Project

General

Profile

Bug #7633

some trigger issues: PAUSE must not raise a trigger and no PAUSE exists when UPDATE is finished

Added by Constantin Asofiei 10 months ago. Updated 10 months ago.

Status:
New
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
Due date:
% Done:

0%

billable:
No
vendor_id:
GCD
case_num:
version:

History

#1 Updated by Constantin Asofiei 10 months ago

There is this test:

def var ch as char.

form ch with frame f1.

on any-key anywhere do:
   message "a" last-key keylabel(last-key).
   run proc0.
   message "e" last-key keylabel(last-key).
end.

procedure proc0.

   def var v as char.
   form v with frame f2 side-labels.
   message "b" last-key keylabel(last-key).
   on any-key of v  in frame f2 do:
      message "c" last-key keylabel(last-key).
      pause.
   end.
   update v with frame f2.
   message "d" last-key keylabel(last-key).
end.
update ch with frame f1 side-labels.

Issues are like this:
  • pause should not execute a trigger for the key.
  • there is no pause after update d has finished.

Also available in: Atom PDF