Is there anyone who uses the ProgressBar control and can show me an example of how to use it ?
(DCL-CONTROL-SETMINVALUE TEST/Palette1/ProgressBar1 0) (DCL-CONTROL-SETMAXVALUE TEST/Palette1/ProgressBar1 length) (while (< n length) (DCL-CONTROL-SETVALUE TEST/Palette1/ProgressBar1 n) (DCL-CONTROL-REDRAW TEST/Palette1/ProgressBar1) ... (setq n (+ n 1)) );while