2014-11-19 18:47 UTC
The Splash archive of examples of OpenDCL working with dcl-Form-startTimer with an accountant.
Working only with dcl-Form-startTimer I just need to control the time that the form will appear on the screen.
I tested the example below by changing the value for dcl-Form-startTimer but not working.
Can anyone tell me where this my mistake?
Working only with dcl-Form-startTimer I just need to control the time that the form will appear on the screen.
(defun c:splash/Form1#OnTimer ()
(dcl-Control-SetCaption Splash/Form1/Label1 (strcat "Loading..." (itoa *Count*)))
(setq *Count* (1- *Count*))
(if (/= *Count* -1)
(dcl-Form-StartTimer Splash/Form1 1000)
(dcl-Form-Close Splash/Form1)
)
(princ)
)I tested the example below by changing the value for dcl-Form-startTimer but not working.
Can anyone tell me where this my mistake?
(defun c:splash/Form1#OnTimer ()
(dcl-form-starttimer Splash/Form1 1000)
(dcl-form-close Splash/Form1)
)