CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Minimize Buttom

  1. #1
    Join Date
    Apr 1999
    Posts
    1

    Minimize Buttom

    How do ICQ (Mirabilis) for instance, create a minimize button in their Dialog Tool Window based app ???????


  2. #2
    Join Date
    Jun 1999
    Location
    Germany
    Posts
    343

    Re: Minimize Buttom

    Hi,
    they are using a window and in the
    message handler of WM_PAINT they'll
    call

    BOOL DrawFrameControl( LPRECT lpRect, UINT nType, UINT nState );



    Please look in your HELP -> with this method, you can draw any standard windows control.


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