Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > Visual C++ MFC > Calendar
  New Posts New Posts RSS Feed - Tooltips malfunction after "Maximize from Tray"
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Tooltips malfunction after "Maximize from Tray"

 Post Reply Post Reply
Author
Message
Algae View Drop Down
Senior Member
Senior Member
Avatar

Joined: 08 January 2007
Location: United States
Status: Offline
Points: 217
Post Options Post Options   Thanks (0) Thanks(0)   Quote Algae Quote  Post ReplyReply Direct Link To This Post Topic: Tooltips malfunction after "Maximize from Tray"
    Posted: 03 July 2009 at 5:20pm

Toolkit Pro 13.1

Calendar Tooltips fail to fire after program is restored from the tray.

Here's the fix:

XTTrayIcon.cpp approximately line 957.

// replace this line

//    pWndApp->SetWindowPos(0, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED | SWP_SHOWWINDOW);

// with this (from older toolkit version)

    pWndApp->ShowWindow(SW_SHOW);
    pWndApp->RedrawWindow(NULL, NULL, RDW_UPDATENOW | RDW_ALLCHILDREN | RDW_FRAME |
        RDW_INVALIDATE | RDW_ERASE);

Back to Top
mdoubson View Drop Down
Senior Member
Senior Member
Avatar

Joined: 17 November 2008
Status: Offline
Points: 1705
Post Options Post Options   Thanks (0) Thanks(0)   Quote mdoubson Quote  Post ReplyReply Direct Link To This Post Posted: 24 July 2009 at 1:32pm
Sorry - this file is not part of Calendar source - it belong to Common. Please contact Oleg to fix it
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.156 seconds.