//*********************************************************************** // // listcombo.h // //*********************************************************************** class CMyApp : public CWinApp { public: virtual BOOL InitInstance (); }; class CMainWindow : public CWnd { private: CFont m_fontMain; // fontti CButton m_ctlGroupBox; // kehyskontrolli CButton m_ctlPushButton1; // painonappi CButton m_ctlPushButton2; // painonappi CComboBox m_ctlComboBox; // yhdistemäluetteloruutu CListBox m_ctlListBox; // luetteloruutu CStatic m_ctlStatic; // etiketti public: CMainWindow (); protected: afx_msg int OnCreate (LPCREATESTRUCT); // luomisaliohjelma afx_msg void OnButtonListClicked (); // Tutki ListBox -nappi afx_msg void OnButtonComboClicked (); // Tutki Combo -nappi DECLARE_MESSAGE_MAP () };