-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit with date and time out of DISK_055 backup
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// chkbkfrm.h : interface of the CCheckBookFrame class | ||
// | ||
// This is a part of the Microsoft Foundation Classes C++ library. | ||
// Copyright (C) 1992 Microsoft Corporation | ||
// All rights reserved. | ||
// | ||
// This source code is only intended as a supplement to the | ||
// Microsoft Foundation Classes Reference and Microsoft | ||
// QuickHelp and/or WinHelp documentation provided with the library. | ||
// See these sources for detailed information regarding the | ||
// Microsoft Foundation Classes product. | ||
|
||
// We override CMDIChildWnd to customize the MDI child's title bar. | ||
// By default the title bar shows the document name. But we want | ||
// it to instead show the text defined as the first string in | ||
// the document template STRINGTABLE resource. This string is | ||
// "Book" in the case of the MDI child window that embeds the book | ||
// view, and similarly "Check" for the other MDI child window. If | ||
// we didn't customize the title bar, the two MDI child windows would | ||
// show MYCHECKS:1 and MYCHECKS:2 if the document were named MYCHECKS. | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
|
||
class AFX_CLASS_EXPORT CDrawFrame : public CMDIChildWnd | ||
{ | ||
DECLARE_DYNCREATE(CDrawFrame) | ||
protected: | ||
BOOL PreCreateWindow(CREATESTRUCT& cs); | ||
}; |