Click here to Skip to main content
15,881,455 members
Articles / Desktop Programming / MFC
Article

Dynamically re-creating a list box

Rate me:
Please Sign up or sign in to vote.
4.72/5 (20 votes)
2 Aug 2002CPOL2 min read 130.1K   47   10
Function to recreate a listbox at run-time to allow new styles, preserving its data, and selections

Introduction

This article is a companion article to my article Dynamically re-creating a combo box. Similarly to the combo box, I frequently find myself needing to switch a list box to or from sorted, or to or from multi select. As with the combo box, changing these styles after creation is something that a listbox does not support. The function presented here will recreate the list box so that style changes take effect. The function will retain all list items, with item data, and the currently selected items.

When the style is modified on a listbox to include or remove the LBS_SORT for example, it can be seen (by using GetStyle(), or using a tool such as Spy++) that the control does in fact have the new style, and yet the control's behaviour has not changed. The function here simply gets the current info from the control, i.e. styles, font etc, and recreates the control using these values.

How to use

I originally had a CListBox-derived class which one member function to recreate the controls, but decided that this was more trouble than it was worth, as I usually use controls derived from other bases. Therefore I have presented this as a single function, which should be included in a global library file, so that you can invoke it on any listbox at any time.

In order to change the style of a listbox, you should perform the usual method of setting the new style e.g.

list.ModifyStyle(0, LBS_SORT);

and then after than call your should call:

RecreateListBox(&list)

The function takes an optional void pointer, lpParam, which is passed to CreateEx on recreating the control. If you have special requirements when creating your controls, and you normally pass in some data for the creation parameters, then you should pass the same info in here. Most developers can simply ignore this parameter.

The Function

The function to recreate the listbox is below:

// recreate the list box by copying styles etc, and list items
// and applying them to a newly created control
BOOL RecreateListBox(CListBox* pList, LPVOID lpParam/*=NULL*/)
{
	if (pList == NULL)
		return FALSE;
	if (pList->GetSafeHwnd() == NULL)
		return FALSE;

	CWnd* pParent = pList->GetParent();
	if (pParent == NULL)
		return FALSE;

	// get current attributes
	DWORD dwStyle = pList->GetStyle();
	DWORD dwStyleEx = pList->GetExStyle();
	CRect rc;
	pList->GetWindowRect(&rc);
	pParent->ScreenToClient(&rc);	// map to client co-ords
	UINT nID = pList->GetDlgCtrlID();
	CFont* pFont = pList->GetFont();
	CWnd* pWndAfter = pList->GetNextWindow(GW_HWNDPREV);

	// create the new list box and copy the old list box items 
	// into a new listbox along with each item's data, and selection state
	CListBox listNew;
	if (! listNew.CreateEx(dwStyleEx, _T("LISTBOX"), _T(""), dwStyle, 
                                rc, pParent, nID, lpParam))
	  return FALSE;
	listNew.SetFont(pFont);
	int nNumItems = pList->GetCount();
	BOOL bMultiSel = (dwStyle & LBS_MULTIPLESEL || dwStyle & LBS_EXTENDEDSEL);
	for (int n = 0; n < nNumItems; n++)
	{
		CString sText;
		pList->GetText(n, sText);
		int nNewIndex = listNew.AddString(sText);
		listNew.SetItemData(nNewIndex, pList->GetItemData(n));
		if (bMultiSel && pList->GetSel(n))
			listNew.SetSel(nNewIndex);
	}
	if (! bMultiSel)
	{
		int nCurSel = pList->GetCurSel();
		if (nCurSel != -1)
		{
			CString sSelText;
			// get the selection in the old list
			pList->GetText(nCurSel, sSelText);
			// now find and select it in the new list
			listNew.SetCurSel(listNew.FindStringExact(-1, sSelText));
		}
	}
	// destroy the existing window, then attach the new one
	pList->DestroyWindow();
	HWND hwnd = listNew.Detach();
	pList->Attach(hwnd);

	// position correctly in z-order
	pList->SetWindowPos(pWndAfter == NULL ? &CWnd::wndBottom
                                 : pWndAfter, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);

	return TRUE;
}

See Also

History

  • Version 1 - 26 Jul 2002 - First version
  • Version 2 - 30 Jul 2002 - modified to include changes suggested by Jean-Michel LE FOL and Davide Zaccanti

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United Kingdom United Kingdom
Originally from an electronics background, I moved into software in 1996, partly as a result of being made redundant, and partly because I was very much enjoying the small amount of coding (in-at-the-deep-end-C) that I had been doing!

I swiftly moved from C to C++, and learned MFC, and then went on to real-time C on Unix. After this I moved to the company for which I currently work, which specialises in Configuration Management software, and currently program mainly in C/C++, for Windows. I have been gradually moving their legacy C code over to use C++ (with STL, MFC, ATL, and WTL). I have pulled in other technologies (Java, C#, VB, COM, SOAP) where appropriate, especially when integrating with third-party products.

In addition to that, I have overseen the technical side of the company website (ASP, VBScript, JavaScript, HTML, CSS), and have also worked closely with colleagues working on other products (Web-based, C#, ASP.NET, SQL, etc).

For developing, I mainly use Visual Studio 2010, along with an in-house-designed editor based on Andrei Stcherbatchenko's syntax parsing classes, and various (mostly freeware) tools. For website design, I use Dreaweaver CS3.

When not developing software, I enjoy listening to and playing music, playing electric and acoustic guitars and mandolin.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Pony8714-Jul-10 19:20
Pony8714-Jul-10 19:20 
GeneralAdding Items to a listBox and get the Item ID Pin
CJGun12-Sep-08 2:26
CJGun12-Sep-08 2:26 
Generalmfc listbox mouse event Pin
Anonymous30-Oct-03 21:27
Anonymous30-Oct-03 21:27 
GeneralCreating in IE Toolbar Band Pin
tools200018-Jun-03 17:30
tools200018-Jun-03 17:30 
GeneralProblem: Scroll bar disappeared Pin
Geert Delmeiren17-Dec-02 1:20
Geert Delmeiren17-Dec-02 1:20 
GeneralFYI: Solved: Scroll bar disappeared Pin
Geert Delmeiren17-Dec-02 5:08
Geert Delmeiren17-Dec-02 5:08 
GeneralSmall correction Pin
Geert Delmeiren29-Oct-02 1:57
Geert Delmeiren29-Oct-02 1:57 
GeneralGood idea Paul Pin
Jean-Michel LE FOL26-Jul-02 6:58
Jean-Michel LE FOL26-Jul-02 6:58 
GeneralRe: Good idea Paul Pin
Paul Vickery30-Jul-02 3:08
professionalPaul Vickery30-Jul-02 3:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.