Skip to main content
Inspiring
May 17, 2017
Question

Is there a list view in the Dialog?

  • May 17, 2017
  • 1 reply
  • 526 views

I am just working with the .rc file and I see that I am able to create a combo box:

BEGIN

  EDITTEXT        4, 6, 16, 92, 12, ES_AUTOHSCROLL | ES_OEMCONVERT

  COMBOBOX        IDC_MYCOMBO, 200, 205, 35, 30, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP

  LTEXT           "My Combos:", IDC_STATIC, 165, 208, 30, 8

  DEFPUSHBUTTON   "OK", 1, 104, 6, 50, 14, WS_GROUP

  PUSHBUTTON      "Cancel", 2, 104, 24, 50, 14, WS_GROUP

END

Just wondering if there is any way to include a list view window? I am trying to display hundreds of elements and I just think the combo box is useless.

Also, IF* there is no other way to display elements how exactly does the Combo box work, and do you have any resources on how to pick it up quickly?

This topic has been closed for replies.

1 reply

Tom Ruark
Inspiring
May 17, 2017

I would try to find a Win32 UI programming forum for this question. Maybe Stack Overflow or  How to Create a Simple Combo Box (Windows)

i73Author
Inspiring
May 17, 2017

Ah, yeah I figured it out, at this point I am just going to use QT, Thanks Tom!