2023-06-16 10:40 UTC
Is there anyone who uses the ProgressBar control and can show me an example of how to use it ?
author=domenicomaria link=topic=2877.msg13864#msg13864 date=1686912048 wrote:
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