This example shows how to use the label component.
"Label example" "lib/modules/standard.whl" "lib/modules/components/component.whl" "lib/modules/components/form.whl" "lib/modules/components/label.whl" LABEL_COUNT 0x5EF685C3 LABEL_LABEL 0x3B44B2E3 "label.wfrm" number count = 0 number windowHandle ; @proc Show the form. ; @ret The handle to the form. proc showLabelForm() ret components.form.show("label.wfrm") end proc main() windowHandle = showLabelForm() repeat count++ components.label.setNumber(windowHandle, LABEL_COUNT, count) sleep(500) end end