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

Thread: MDI TitleBar

  1. #1
    Join Date
    Jun 1999
    Location
    Beijing China
    Posts
    48

    MDI TitleBar

    Hi:
    In SDI I know use FWS_ADDTOTITLE can remove "Untitled" caption in the titlebar.
    In MDI how to do that.

    Best regards.


  2. #2
    Join Date
    Apr 1999
    Posts
    11

    Re: MDI TitleBar

    You can overwrite the CFrameWnd virtual function "OnUpdateFrameTitle" in your apps CMainFrame class. Don't try to look up "OnUpdateFrameTitle" in the Microsoft Developer Studio online help. It's not there.
    In this function you can set any text in App title.

    for more info go:
    http://www.codeguru.com/doc_view/no_untitled.shtml


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