Jump to content

Recommended Posts

Posted (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 by Holger

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...