Bug #7633
some trigger issues: PAUSE must not raise a trigger and no PAUSE exists when UPDATE is finished
Status:
New
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
Due date:
% Done:
0%
billable:
No
vendor_id:
GCD
case_num:
version_reported:
version_resolved:
reviewer:
production:
No
env_name:
topics:
History
#1 Updated by Constantin Asofiei about 3 years 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:
pauseshould not execute a trigger for the key.- there is no pause after
update dhas finished.