CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2005
    Location
    Eden Prairie, MN
    Posts
    18

    Change frame title without changing window menu?

    Thanks to the very helpful advice found in others' previous posts I've figured out how to change the frame title in my MDI app via OnUpdateFrameTitle(). However, I don't want the changes to appear in the Window menu - I want the Window menu to show just the document names as it did before.

    Does anyone know how to do that?

  2. #2
    Join Date
    Aug 1999
    Location
    <Classified>
    Posts
    6,882

    Re: Change frame title without changing window menu?

    What is that mean ? what changes to menu ?
    Regards,
    Ramkrishna Pawar

  3. #3
    Join Date
    May 1999
    Location
    ALABAMA, USA
    Posts
    9,917

    Re: Change frame title without changing window menu?

    If you are changing child window titles, you will have to either override OnUpdateFrameMenu in CMDIChildWnd or subclass client of the main frame and handle WM_MDIREFRESHMENU message.

    See this thread and this thread.
    There are only 10 types of people in the world:
    Those who understand binary and those who do not.

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