bootstrap.h

来自「数理统计类软件」· C头文件 代码 · 共 63 行

H
63
字号
#if !defined(AFX_BOOTSTRAP_H__3ECCF36A_6CDB_4311_A2AE_70B92F525C54__INCLUDED_)
#define AFX_BOOTSTRAP_H__3ECCF36A_6CDB_4311_A2AE_70B92F525C54__INCLUDED_
#include "ConnectDB.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// BootStrap.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CBootStrap dialog

class CBootStrap : public CDialog
{
// Construction
	struct DataInfo
	{
		CString Data[500];
		int DataNum;
	};
public:
	void DeleteTable(CString TableName);
	CBootStrap(CWnd* pParent = NULL);   // standard constructor
	DataInfo OriginData;
	int TableNum;
// Dialog Data
	//{{AFX_DATA(CBootStrap)
	enum { IDD = IDD_BOOTSTRAP };
	CListCtrl	m_ResultDataList;
	CListCtrl	m_OrignDataList;
	int		m_Capacity;
	int		m_Number;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CBootStrap)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
private:
	CConnectDB mDataBase;
protected:
	
	// Generated message map functions
	//{{AFX_MSG(CBootStrap)
	afx_msg void OnLoad();
	afx_msg void OnSave();
	virtual BOOL OnInitDialog();
	afx_msg void OnCalculate();
	afx_msg void OnDelete();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_BOOTSTRAP_H__3ECCF36A_6CDB_4311_A2AE_70B92F525C54__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?