/* Project laskuri jyu Copyright © 1994. All Rights Reserved. SUBSYSTEM: laskuri.exe Application FILE: lsktdlgc.cpp AUTHOR: vl OVERVIEW ======== Source file for implementation of laskuriTDLGClient (TDialog). */ #include #pragma hdrstop #include "laskrapp.h" #include "lsktdlgc.h" // // Build a response table for all messages/commands handled // by the application. // DEFINE_RESPONSE_TABLE1(laskuriTDLGClient, TDialog) //{{laskuriTDLGClientRSP_TBL_BEGIN}} EV_BN_CLICKED(IDC_KA, BNClicked_KA), EV_BN_CLICKED(IDC_HA, BNClicked_HA), EV_BN_CLICKED(IDC_NOLLAA, BNClicked_NOLLAA), //{{laskuriTDLGClientRSP_TBL_END}} END_RESPONSE_TABLE; //{{laskuriTDLGClient Implementation}} ////////////////////////////////////////////////////////// // laskuriTDLGClient // ========== // Construction/Destruction handling. laskuriTDLGClient::laskuriTDLGClient (TWindow *parent, TResId resId, TModule *module) : TDialog(parent, resId, module) { // INSERT>> Your constructor code here. } laskuriTDLGClient::~laskuriTDLGClient () { Destroy(); // INSERT>> Your destructor code here. } void laskuriTDLGClient::BNClicked_KA () { // INSERT>> Your code here. SetDlgItemInt(IDC_KAL,GetDlgItemInt(IDC_KAL)+1); } void laskuriTDLGClient::BNClicked_HA () { // INSERT>> Your code here. SetDlgItemInt(IDC_HAL,GetDlgItemInt(IDC_HAL)+1); } void laskuriTDLGClient::BNClicked_NOLLAA () { // INSERT>> Your code here. for (int i=0; i