20210223 1656 

 

REF

[1] "autohotkey.com/board/topic/19438-need-help-with-gui-and-checkbox-select-all/"

 

from [1]

Gui Font, Bold
Gui, Add, GroupBox, x6 y7 w130 h590, System Specs
Gui Font, Norm
Gui Add, CheckBox, gselectall x16 y27 w110 h30, Select All
Gui, Add, CheckBox, vprocessor x16 y57 w110 h30 , Processor
Gui, Add, CheckBox, vram x16 y97 w110 h30 , RAM
Gui, Add, CheckBox, vdrives x16 y137 w110 h30 , Drives
Gui, Show, x1 y79 h200 w200, 
return

selectall:
   OnOff := !OnOff
 GuiControl,,processor,%OnOff%
 GuiControl,,RAM,%OnOff%
 GuiControl,,Drives,%OnOff%
Return

 

Posted by Weneedu
,


출처: https://privatedevelopnote.tistory.com/81 [개인노트]