PortalDeamon000 Posted February 20, 2009 Posted February 20, 2009 I have searched all over and I can't seem a way to undo a GUICtrlSetBkColor for a progress bar I am making. If I could do this without creating the control again I would be very happy. -Portal
exodius Posted February 20, 2009 Posted February 20, 2009 I'm assuming you're using Window Classic Style... #include <GUIConstantsEx.au3> #include <ProgressConstants.au3> Local $progressbar1, $progressbar2, $button, $wait, $s, $msg, $m GUICreate("My GUI Progressbar", 220, 100, 100, 200) $progressbar1 = GUICtrlCreateProgress(10, 10, 200, 20) GUICtrlSetColor(-1, 32250); not working with Windows XP Style $progressbar2 = GUICtrlCreateProgress(10, 40, 200, 20, $PBS_SMOOTH) $button = GUICtrlCreateButton("Start", 75, 70, 70, 20) GUISetState() GUICtrlSetBkColor ($progressbar1, "0xFFFF00") MsgBox (0, "", "") GUICtrlSetBkColor ($progressbar1, "0xC0C0C0") Do $msg = GUIGetMsg() Until $msg = $GUI_EVENT_CLOSE
PortalDeamon000 Posted February 20, 2009 Author Posted February 20, 2009 ahh yes, thank you. I was looking at a whole long list of colors and couldn't find a matching one.
Moderators Melba23 Posted February 20, 2009 Moderators Posted February 20, 2009 PortalDeamon000,You can use _WinAPI_GetSysColor($COLOR_WINDOW) to get the default value for the GUI background. Then use GUICtrlSetBkColor with that value.Might come in handy if you come across someone who has changed the colour from the MS preset value.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
exodius Posted February 20, 2009 Posted February 20, 2009 ahh yes, thank you. I was looking at a whole long list of colors and couldn't find a matching one.I used the AU3Info tool in SciTE under Tools, it'll give you the color code for where your mouse is.
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