home *** CD-ROM | disk | FTP | other *** search
- // HelpButton.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "Parser.h"
- #include "HelpButton.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // HelpButton
-
- HelpButton::HelpButton()
- {
- }
-
- HelpButton::~HelpButton()
- {
- }
-
-
- BEGIN_MESSAGE_MAP(HelpButton, CButton)
- //{{AFX_MSG_MAP(HelpButton)
- ON_WM_CREATE()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // HelpButton message handlers
-
- int HelpButton::OnCreate(LPCREATESTRUCT lpCreateStruct)
- {
- if (CButton::OnCreate(lpCreateStruct) == -1)
- return -1;
-
- // TODO: Add your specialized creation code here
-
- SetWindowText("&Help");
-
- return 0;
- }
-