Hallo
Jemand eine Idee warum die Checkboxen beim starten der *.exe nicht disabelt werden?
Ich möchte das die Checkboxen auch beim starten der *.exe disabelt werden, wenn die Variable "Splice" 0 ist.
C
Splice := 0
gosub, Splice
Gui, Font, S8 CDefault Norm,
Gui, Add, Checkbox, x10 y10 vSplice gSplice, Use Default ?
Gui, Add, Text, x10 y33, Device ID:
Gui, Add, Edit, x85 y30 w75 vID, %ID%
Gui, Add, Text, x10 y63, Device Port:
Gui, Add, Edit, x85 y60 w75 vport, %port%
Gui, Add, Text, x10 y93, Device Rate:
Gui, Add, Edit, x85 y90 w75 vrate, %rate%
Gui, Add, Button, x50 y125 w75 h20 gDEVICE, Show ID ;
Gui, Show, w175 h150, Device
return
GuiClose:
ExitApp
DEVICE:
Gui, Submit, NoHide
msgbox % ID
return
SPLICE:
Gui, Submit, NoHide
GuiControl, % Splice ? "Disable" : "Enable", ID
GuiControl, , ID, % Splice ? "Default ID" : ""
GuiControl, % Splice ? "Disable" : "Enable", port
GuiControl, , port, % Splice ? "Default Port" : ""
GuiControl, % Splice ? "Disable" : "Enable", rate
GuiControl, , rate, % Splice ? "Default Rate" : ""
return
Alles anzeigen
Mit freundlichen Grüßen
malE