-1

Can we create a checkbox dynamically on a window in progress? Actually i have created combo-box,frame,fill-in dynamically but not getting the idea how can I Create checkbox dynamically.

Tom Bascom
  • 13,405
  • 2
  • 27
  • 33
Daby
  • 1
  • 3

1 Answers1

1
display "Example" skip(2) with frame a width 80.

define variable h as handle no-undo.
create toggle-box h assign
  row = 2
  column = 1
  label = "hi there"
  frame = frame a:handle
  sensitive = true
  visible = true
.

wait-for window-close of current-window.
Tom Bascom
  • 13,405
  • 2
  • 27
  • 33