Holger 14 Posted October 15, 2004 (edited) Hi outthere here is a small modification to the SetColour-function: ... int nExStyle = 0; ... // Set Text color if specified for this control if (lpCtrl->nTextColor != -1) SetTextColor(hdc, lpCtrl->nTextColor); nExStyle = GetWindowLong(lpCtrl->hWnd,GWL_EXSTYLE); } // set background color if (nExStyle & WS_EX_TRANSPARENT) { SetBkMode(hdc,TRANSPARENT); return (HBRUSH)GetStockObject(NULL_BRUSH); } else { SetBkColor(hdc, nColor); return CreateGUIBrush(nColor); } } // SetColour Maybe you can do something with it So long... Holger Edited October 15, 2004 by Holger Old project:GUI/Tray menu with icons and colorsOther old stuff:IconFileScanner, TriState/ThreeState GUI TreeView, GUI ContextMenu created out of a TreeView Share this post Link to post Share on other sites