List box
C / C++ / MFC
2
Posts
2
Posters
1
Views
1
Watching
-
How do I create a list box on my main window using MFC? I know how to do it for a DialogBox, but can't figure out how to do it on the main window.
-
How do I create a list box on my main window using MFC? I know how to do it for a DialogBox, but can't figure out how to do it on the main window.
Derive your view from CFormView and then you can make your view any combination of dialog items. OF course if you want to keep your view as it is but only add the one item, then you'll need to create a frameless dialog to simulate an item in the view itself.