CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Feb 2009
    Posts
    24

    Wink color of title bar in dialog box

    Hi All,

    I need to change the color of title bar in dialog box and also border color of window.

    Please help me..............


    Thanks & Regards,
    Priya

  2. #2
    Join Date
    Nov 2003
    Location
    Belgium
    Posts
    8,150

    Re: color of title bar in dialog box

    Those are defined globally on your system and are the same for all windows.
    If you want to change that you will have to draw the titlebar and borders yourself.
    You might be able to do this by handling WM_NCPAINT.
    Marc Gregoire - NuonSoft (http://www.nuonsoft.com)
    My Blog
    Wallpaper Cycler 3.5.0.97

    Author of Professional C++, 4th Edition by Wiley/Wrox (includes C++17 features)
    ISBN: 978-1-119-42130-6
    [ http://www.facebook.com/professionalcpp ]

  3. #3
    Join Date
    Feb 2009
    Posts
    24

    Re: color of title bar in dialog box

    Quote Originally Posted by Marc G View Post
    Those are defined globally on your system and are the same for all windows.
    If you want to change that you will have to draw the titlebar and borders yourself.
    You might be able to do this by handling WM_NCPAINT.
    I need the sample code.

  4. #4
    Join Date
    Nov 2007
    Posts
    74

    Re: color of title bar in dialog box


  5. #5
    Join Date
    Feb 2009
    Posts
    24

    Re: color of title bar in dialog box

    Hi,

    This sample code is very helpful for me.But i dont know how to set the window caption.
    Please help me.....................

  6. #6
    Join Date
    Nov 2003
    Location
    Belgium
    Posts
    8,150

    Re: color of title bar in dialog box

    You draw the window caption use TextOut or DrawText.
    Marc Gregoire - NuonSoft (http://www.nuonsoft.com)
    My Blog
    Wallpaper Cycler 3.5.0.97

    Author of Professional C++, 4th Edition by Wiley/Wrox (includes C++17 features)
    ISBN: 978-1-119-42130-6
    [ http://www.facebook.com/professionalcpp ]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured