helpers.h
来自「Visual C++ 实践与提高--数据库篇的源代码。很好的东西。欢迎下载。」· C头文件 代码 · 共 28 行
H
28 行
// Helpers.h: interface for the CHelpers class.
//
#if !defined(AFX_HELPERS_H__DF0ED2F1_BED3_11D2_BDAA_204C4F4F5020__INCLUDED_)
#define AFX_HELPERS_H__DF0ED2F1_BED3_11D2_BDAA_204C4F4F5020__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
//////////////////////////////////////////////////////////////////////
// CHelpers
class CHelpers
{
public:
static int Insert(CListCtrlEx* pListCtrl, CString& sRow, int nImage = -1,
int nIndex = -1);
static CString GetFileExceptionError(const int& nCause);
static CString GetType(const int& nType);
static CString CrackStrVariant(const COleVariant& var);
static CString GetPropertyAttributes(const int& nPropertyAttributesEnum);
~CHelpers();
private:
CHelpers();
};
#endif // !defined(AFX_HELPERS_H__DF0ED2F1_BED3_11D2_BDAA_204C4F4F5020__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?