home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK11 / MFC / SAMPLES / CTRLTEST / CUSTLIST.DL$ / custlist
Encoding:
Text File  |  1992-03-18  |  512 b   |  15 lines

  1. // Simple dialog with 1 listbox in it
  2.  
  3.  
  4. IDD_CUSTOM_LIST DIALOG 16, 16, 173, 87
  5. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  6. CAPTION "Sample Dialog with custom listbox"
  7. FONT 8, "Helv"
  8. BEGIN
  9.     LTEXT           "Please Pick a &Color:", -1, 8, 9, 73, 8
  10.     LISTBOX         IDC_LISTBOX1, 10, 25, 103, 61, LBS_SORT | LBS_NOTIFY |
  11.                     LBS_OWNERDRAWVARIABLE | WS_VSCROLL | WS_TABSTOP
  12.     DEFPUSHBUTTON   "OK", IDOK, 134, 6, 33, 14
  13.     PUSHBUTTON      "Cancel", IDCANCEL, 134, 23, 33, 14
  14. END
  15.