⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vchelper.h

📁 cj60lib界面库 ,ado数据库编程 使用方法: 调试代码必须装有cj60lib界面扩展库 cj60lib的使用方法参看有关文档 不知道是不是我的cj60lib出问题
💻 H
字号:
// vchelper.h : main header file for the VCHELPER application
//

#if !defined(AFX_VCHELPER_H__E2800F8C_DB51_425E_923D_B8C5B96C53C6__INCLUDED_)
#define AFX_VCHELPER_H__E2800F8C_DB51_425E_923D_B8C5B96C53C6__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"       // main symbols

/////////////////////////////////////////////////////////////////////////////
// CVchelperApp:
// See vchelper.cpp for the implementation of this class
//

typedef struct{
	TCHAR FilePath[MAX_PATH]; //数据库文件路径名
} CFG_INFO;

struct INFRCD{
	CString strName;
	int typeID1;
	int typeID2;
};

class CVchelperApp : public CWinApp
{
public:
	CVchelperApp();
	virtual ~CVchelperApp();
	void UpdateCfgInfo();
	CString GetCfgFilePath();
	BOOL OpenDb();
	CString GetDbName();

	CString m_Dbname;
	CImageList	m_imagelist;
	CFG_INFO* m_pCfgInfo;

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CVchelperApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation
	//{{AFX_MSG(CVchelperApp)
	afx_msg void OnAppAbout();
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

extern CVchelperApp theApp;
/////////////////////////////////////////////////////////////////////////////

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

#endif // !defined(AFX_VCHELPER_H__E2800F8C_DB51_425E_923D_B8C5B96C53C6__INCLUDED_)

⌨️ 快捷键说明

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