Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Lag when the system repaints the check boxes
#2
Call the dll in another thread.
Then if want to wait, use opt waitmsg 1.

Function Dialog192
Code:
Copy      Help
str dd=
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 224 136 "Dialog"
;3 Button 0x54012003 0x0 8 8 48 10 "Check"
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040308 "*" "" "" ""

str controls = "3"
str c3Che
if(!ShowDialog(dd &sub.DlgProc &controls)) ret


#sub DlgProc
function# hDlg message wParam lParam

sel message
,case WM_INITDIALOG
,case WM_DESTROY
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case 3 ;;Check
,if but(lParam) ;;if checked
,,EnableWindow lParam 0
,,opt waitmsg 1
,,wait 0 H mac("sub.Thread")
,,EnableWindow lParam 1
,,out "finished"
ret 1


#sub Thread
;call a dll function, for example
Sleep 3000


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)