2007-07-28 06:31 UTC
In response to a user Request ..
The ODCL is too large to be attached due to the current site configuration .. sorry, but it's pretty simple :-)
(the ODCL is 548 KB ; most of which is the graphic picture)
[attachment deleted by admin]
The ODCL is too large to be attached due to the current site configuration .. sorry, but it's pretty simple :-)
(the ODCL is 548 KB ; most of which is the graphic picture)
(DEFUN c:TestSplash (/ _Delay_Initialize)
(VL-LOAD-COM)
;;------------------------------------------------------
(defun _Delay_Initialize (delayval / cnt)
(setq cnt 0)
(setvar "cmdecho" 0)
(while (< cnt delayval)
(command "delay" "20")
(dcl_Control_SetValue TestSplash_F1_ProgressBar1 (setq cnt (1+ cnt)))
)
(dcl_Form_close TestSplash_F1)
;; pretend to do stuff
(command "delay" "700")
;;
(dcl_Form_close TestSplash_Splash)
)
;;------------------------------------------------------
(DCL_PROJECT_LOAD "TestSplash.odcl" T)
;;
(DCL_FORM_SHOW TestSplash_Splash)
(dcl_Form_Show TestSplash_F1 100 100)
(_Delay_Initialize 100)
;;
(DCL_FORM_SHOW TestSplash_Main)
(PRINC)
)[attachment deleted by admin]