//---------------------------------------------------------------------------- // Project Puh // jyu // Copyright © 1996. All Rights Reserved. // // SUBSYSTEM: Puh Application // FILE: formpuh.cpp // AUTHOR: vl // // OVERVIEW // ~~~~~~~~ // Source file for implementation of TFormPuh (TDialog). // //---------------------------------------------------------------------------- #include #include "puhapp.h" #include "formpuh.h" // // Build a response table for all messages/commands handled by the application. // DEFINE_RESPONSE_TABLE2(TFormPuh, TDialog, TVbxEventHandler) //{{TFormPuhRSP_TBL_BEGIN}} EV_VBXEVENTNAME(IDC_DBEditNimi, "Change", ChangeNimi), //{{TFormPuhRSP_TBL_END}} END_RESPONSE_TABLE; //{{TFormPuh Implementation}} //-------------------------------------------------------- // TFormPuh // ~~~~~~~~~~ // Construction/Destruction handling. // TFormPuh::TFormPuh(TWindow* parent, TResId resId, TModule* module) : TDialog(parent, resId, module) { // INSERT>> Your constructor code here. } TFormPuh::~TFormPuh() { Destroy(); // INSERT>> Your destructor code here. } void TFormPuh::ChangeNimi(VBXEVENT FAR */*event*/) { // INSERT>> Your code here. }