root/trunk/ExecuteScript.h

Revision 5, 1.4 kB (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 #if !defined(AFX_EXECUTESCRIPT_H__B9E2901A_6697_4476_BBDE_95D4FCC16E53__INCLUDED_)
2 #define AFX_EXECUTESCRIPT_H__B9E2901A_6697_4476_BBDE_95D4FCC16E53__INCLUDED_
3
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
7 // ExecuteScript.h : header file
8 //
9
10 /////////////////////////////////////////////////////////////////////////////
11 // CExecuteScript dialog
12
13 class CExecuteScript : public CDialog
14 {
15 // Construction
16 public:
17     CExecuteScript(CWnd* pParent = NULL);   // standard constructor
18
19 // Dialog Data
20     //{{AFX_DATA(CExecuteScript)
21     enum { IDD = IDD_EXECUTESCRIPT_DLG };
22     CButton m_repeatCtrl;
23     CEdit   m_repeatNum;
24     CXTButton   m_ok;
25     CXTButton   m_cancel;
26     CComboBox   m_script;
27     CString m_csScript;
28     BOOL    m_repeat;
29     CString m_repeatNumber;
30     //}}AFX_DATA
31
32
33 // Overrides
34     // ClassWizard generated virtual function overrides
35     //{{AFX_VIRTUAL(CExecuteScript)
36     protected:
37     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
38     //}}AFX_VIRTUAL
39
40 // Implementation
41 protected:
42
43     // Generated message map functions
44     //{{AFX_MSG(CExecuteScript)
45     virtual void OnOK();
46     virtual void OnCancel();
47     virtual BOOL OnInitDialog();
48     afx_msg void OnClicked();
49     //}}AFX_MSG
50     DECLARE_MESSAGE_MAP()
51 };
52
53 //{{AFX_INSERT_LOCATION}}
54 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
55
56 #endif // !defined(AFX_EXECUTESCRIPT_H__B9E2901A_6697_4476_BBDE_95D4FCC16E53__INCLUDED_)
Note: See TracBrowser for help on using the browser.