Click here to Skip to main content
15,893,487 members
Articles / Desktop Programming / MFC

Using the CComboBox Control

Rate me:
Please Sign up or sign in to vote.
4.84/5 (65 votes)
23 Mar 2001 887.8K   7.3K   135  
An entry level tutorial on using the CComboBox control
// ComboBoxTutorial.h : main header file for the COMBOBOXTUTORIAL application
//

#if !defined(AFX_COMBOBOXTUTORIAL_H__35C30C65_8D8C_11D4_BBCF_0000B44EED3A__INCLUDED_)
#define AFX_COMBOBOXTUTORIAL_H__35C30C65_8D8C_11D4_BBCF_0000B44EED3A__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

/////////////////////////////////////////////////////////////////////////////
// CComboBoxTutorialApp:
// See ComboBoxTutorial.cpp for the implementation of this class
//

class CComboBoxTutorialApp : public CWinApp
{
public:
	CComboBoxTutorialApp();

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

// Implementation

	//{{AFX_MSG(CComboBoxTutorialApp)
		// 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()
};


/////////////////////////////////////////////////////////////////////////////

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

#endif // !defined(AFX_COMBOBOXTUTORIAL_H__35C30C65_8D8C_11D4_BBCF_0000B44EED3A__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
Engineer Retired
Australia Australia
Started working with computers when I/O was with punched paper tape, using Algol. Then learned Fortran, Basic, various Assemblers, Forth and Postscript. Built a robot in the early '80s. When I finally got a PC I learned C, C++ and more recently worked on a variety of .NET and PHP projects. Senior Software Engineer at MedTech Global in Melbourne, Australia.

Comments and Discussions