mycombobox.h

来自「SQLBig5BugTool 宽字符操作问题」· C头文件 代码 · 共 42 行

H
42
字号
// MyComboBox.h: interface for the CMyComboBox class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_MYCOMBOBOX_H__0CD90723_B620_4575_9601_6DD4D6FEF17D__INCLUDED_)
#define AFX_MYCOMBOBOX_H__0CD90723_B620_4575_9601_6DD4D6FEF17D__INCLUDED_

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

void SaveComboBox(
				  CComboBox*	pComboBox,
				  const char*	pszIniFile,
				  const char*	pszSection
				  );

void LoadComboBox(
				  CComboBox* pComboBox,
				  const char*	pszIniFile,
				  const char*	pszSection
				  );

BOOL ChooseFolderWithComboBox(
							  CComboBox*	pComboBox,
							  const char*	pszChooseFolderTitle,
							  const char*	pszIniSection,
							  const char*	pszIniFile,
							  const DWORD   dwMaxItem,
							  HWND			hWnd
							  );

class CMyComboBox  
{
public:
	CMyComboBox();
	virtual ~CMyComboBox();

};

#endif // !defined(AFX_MYCOMBOBOX_H__0CD90723_B620_4575_9601_6DD4D6FEF17D__INCLUDED_)

⌨️ 快捷键说明

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