W
wmurawski
Guest
Hi! I want to make some changes to many fill-ins without using "assign fill-in-..". Is it possible to do this using only handles to widgets in the way similar to bellow but somehow without explicit assign fill-in-..: def var wh as handle no-undo. wh = focus. do while wh ?: if wh:type = "FILL-IN" then do: /* let's assume every fill-ins are defined as character */ wh:screen-value = wh:screen-value + "x" no-error. /*some changes*/ if wh:name = "FILL-IN-1" then do: assign FILL-IN-1. /* how to replace this explicit assign*/ message "FILL-IN-1:screen-value =" FILL-IN-1:screen-value skip "FILL-IN-1 =" FILL-IN-1 view-as alert-box. end. end. wh = wh:next-sibling. end.
Continue reading...
Continue reading...