home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / ALCKEY.ZIP / ALCKEY.DLG < prev    next >
Text File  |  1992-11-12  |  2KB  |  35 lines

  1. DLGINCLUDE RCDATA DISCARDABLE
  2. BEGIN
  3.     "ALCKEY.H\0"
  4. END
  5.  
  6. ABOUTBOX DIALOG 22, 17, 166, 98
  7. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  8. CAPTION "About Sample"
  9. BEGIN
  10.     CTEXT           "Microsoft Windows for Pens", -1, 0, 5, 166, 8
  11.     CTEXT           "ALC/Keyboard Sample", -1, 0, 14, 166, 8
  12.     CTEXT           "Version 1.0 (Pen), 3.1 of Windows", -1, 0, 58, 166, 8
  13.     DEFPUSHBUTTON   "OK", IDOK, 66, 76, 32, 14, WS_GROUP
  14.     CTEXT           "by Cynthia Anderson", 102, 0, 34, 166, 8
  15.     CTEXT           "Microsoft Windows Developer Support", 103, 0, 43, 166, 
  16.                     8
  17. END
  18.  
  19. ALCDLG DIALOG 6, 18, 343, 196
  20. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION
  21. CAPTION "ALC Settings Dialog"
  22. FONT 8, "MS Sans Serif"
  23. BEGIN
  24.     DEFPUSHBUTTON   "Done", ID_DONE, 264, 167, 71, 25
  25.     LISTBOX         ID_ALCLISTBOX, 11, 5, 114, 160, LBS_MULTIPLESEL | 
  26.                     WS_VSCROLL | WS_TABSTOP
  27.     CONTROL         "", ID_ALCEDIT, "hedit", WS_BORDER | WS_VSCROLL | 
  28.                     WS_TABSTOP | 0x0044, 158, 5, 172, 36
  29.     LTEXT           "Select ALC options, use edit control (above) to input characters you wish to use in ALC_USEBITMAP", 
  30.                     102, 166, 51, 161, 43
  31.     LTEXT           "Input Here will affect only the hedit control on main window, after you've selected your options, hit ""Done"" to return to the main window and test them.", 
  32.                     103, 168, 114, 168, 31
  33.     PUSHBUTTON      "Select Options", ID_SELECT, 178, 168, 71, 24
  34. END
  35.