Advertisement

Listbox Control

Started by July 11, 2001 07:16 PM
0 comments, last by zeophyte 23 years, 7 months ago
How do you make a Listbox control in VC++ without using MFC? Everyting in MSDN that I can find uses MFC, and I just want it to use the Win API. Thanks alot. -Matt Edited by - zeophyte on July 11, 2001 8:18:41 PM
Windows has many problems, but they are very easy to fix - goto Start->Run, type command & press enter. Now type format C:
Have a look right here
To create a listbox control (without MFC) you can either use CreateWindow()/CreateWindowEx() and use the listbox class when you specify the window''s class (Read all about it in the MSDN) or just use the listbox control as a window inside a dialog box template (That you can create and edit and everything with VC).


- Goblineye Entertainment
The road to success is always under construction
Goblineye EntertainmentThe road to success is always under construction

This topic is closed to new replies.

Advertisement