I am trying to have a dialogbox running that shows key parts of the checks, like when you install something...checking diskspace...loading drivers.... etc...
here is a cut down version of what I have so far :
Code: Select all
Dialog>dialog1
Caption=Progress
Width=445
Height=631
Top=106
Left=16
Max=1
Min=1
Close=1
Resize=1
Memo=progress,96,24,273,537,%log%
EndDialog>dialog1
SRT>mainloop
let>log=%log%%CRLF%%update%
wait>0.3
show>dialog1
wait>0.3
setfocus>Progress
wait>0.3
wait>2
END>mainloop
let>update=Kea Session Found and is running checks
gosub>mainloop
let>update=grepping for the process 'prv_nms_req2.4ge' on %server%
wait>0.3
resetdialogaction>dialog1
gosub>mainloop
Thanks in advance.