Bug #8098
The task bar without tasks is not displayed or drawn if ui program displays a lonely dialog box.
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 Sergey Ivanovskiy over 2 years ago
The task bar is not displayed for this program
define button btnOK
label "OK"
size 19 by 1.14.
define button btnExit auto-end-key
label "Exit"
size 19 by 1.14.
def frame f
btnOK at row 1.95 col 5
btnExit at row 1.95 col 25
with size-pixels 640 by 480 overlay
view-as dialog-box title "Dialog Box".
on choose of btnOK do:
MESSAGE "OKEY" VIEW-AS ALERT-BOX.
end.
enable all with frame f.
wait-for window-close of current-window.