// listdlg.h : header file // Copyright (C) 1991-2001 LEAD Technologies, Inc. // All rights reserved. ///////////////////////////////////////////////////////////////////////////// // CListDlg dialog class CListDlg : public CDialog { // Construction public: CListDlg(CWnd* pParent = NULL); // standard constructor // Dialog Data //{{AFX_DATA(CListDlg) enum { IDD = IDD_LIST }; CListBox m_List; CString m_strLabel; CString m_strTitle; CString m_strInit; int m_nValue; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CListDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(CListDlg) virtual BOOL OnInitDialog(); afx_msg void OnSelchangeList1(); afx_msg void OnDblclkList1(); //}}AFX_MSG DECLARE_MESSAGE_MAP() };