kor Posted August 1, 2012 Posted August 1, 2012 (edited) I have some inputs that I am setting the background color to be something other than white. I've noticed that if I use GuiCtrlSetState($control, $GUI_DISABLE) it does in fact disable the inputs, but it does not "gray out" the input as it would if the background color were default. Is there a way to either specify the color that $GUI_DISABLE uses to signify a disabled input, or some way I can manually change the color in a second GuiSetBkColor statement? Func _CreateInput($sText = "", $iLeft = 0, $iTop = 0, $iWidth = 120, $iHeight = 20) Local $oControl = GUICtrlCreateInput($sText, $iLeft, $iTop, $iWidth, $iHeight, BitOR($SS_CENTERIMAGE, $ES_AUTOHSCROLL)) GUICtrlSetBkColor($oControl, 0xE5F5E5) Return $oControl EndFunc ;==>_CreateInput Func _Control($sState, $c0 = 0, $c1 = 0, $c2 = 0, $c3 = 0, $c4 = 0, $c5 = 0, $c6 = 0, $c7 = 0, $c8 = 0, $c9 = 0) If $sState = "Enable" Then $sState = $GUI_ENABLE + $GUI_SHOW If $sState = "Disable" Then $sState = $GUI_DISABLE + $GUI_SHOW If $c0 <> 0 Then GUICtrlSetState($c0, $sState) If $c1 <> 0 Then GUICtrlSetState($c1, $sState) If $c2 <> 0 Then GUICtrlSetState($c2, $sState) If $c3 <> 0 Then GUICtrlSetState($c3, $sState) If $c4 <> 0 Then GUICtrlSetState($c4, $sState) If $c5 <> 0 Then GUICtrlSetState($c5, $sState) If $c6 <> 0 Then GUICtrlSetState($c6, $sState) If $c7 <> 0 Then GUICtrlSetState($c7, $sState) If $c8 <> 0 Then GUICtrlSetState($c8, $sState) If $c9 <> 0 Then GUICtrlSetState($c9, $sState) EndFunc ;==>_ControlEnable Edited August 1, 2012 by kor
Moderators Melba23 Posted August 1, 2012 Moderators Posted August 1, 2012 kor, Do you ever try to solve these simple problems yourself before posting You actually suggest the very thing you need to do: #include <GUIConstantsEx.au3> $hGUI = GUICreate("Test", 500, 500) $cInput = GUICtrlCreateInput("", 10, 10, 200, 20) GUICtrlSetBkColor(-1, 0x00FF00) $cButton = GUICtrlCreateButton("Disable", 10, 50, 80, 30) GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $cButton If BitAnd(GUICtrlGetState($cInput), $GUI_ENABLE) Then GUICtrlSetBkColor($cInput, 0xFF0000) GUICtrlSetState($cInput, $GUI_DISABLE) GUICtrlSetData($cButton,"Enable") Else GUICtrlSetBkColor($cInput, 0x00FF00) GUICtrlSetState($cInput, $GUI_ENABLE) GUICtrlSetData($cButton,"Disable") EndIf EndSwitch WEnd All clear? M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
kor Posted August 1, 2012 Author Posted August 1, 2012 Why of course But thank you. Here is my solution. Func _Control($sState, $aInput) Local $sColor If $sState = "Enable" Then $sState = $GUI_ENABLE + $GUI_SHOW $sColor = 0xE5F5E5 ElseIf $sState = "Disable" Then $sState = $GUI_DISABLE + $GUI_SHOW $sColor = 0xD6D3CE EndIf For $i = 0 To UBound($aInput) - 1 GUICtrlSetState($aControls[$aInput[$i]], $sState) GUICtrlSetBkColor($aControls[$aInput[$i]], $sColor) GUICtrlSetData($aControls[$aInput[$i]], "") Next EndFunc ;==>_Control
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now