home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK8 / MFC / SAMPLES / MULTIPAD / MULTIPAD.DL$ / multipad
Encoding:
Text File  |  1992-03-18  |  2.0 KB  |  58 lines

  1. /* multipad.dlg : Defines the dialogs for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. */
  13.  
  14. DLGINCLUDE RCDATA DISCARDABLE
  15. BEGIN
  16.     "RESOURCE.H\0"
  17. END
  18.  
  19. IDD_ABOUT DIALOG 25, 23, 184, 78
  20. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  21. CAPTION "About Multipad"
  22. FONT 8, "Helv"
  23. BEGIN
  24.     CTEXT           "Microsoft Windows", -1, 0, 5, 184, 8
  25.     CTEXT           "Multipad", -1, 0, 15, 184, 8
  26.     CTEXT           "Version 3.00", -1, 0, 34, 184, 8
  27.     CTEXT           "Copyright \251 1992 Microsoft Corp.", -1, 0, 47, 184, 9
  28.     DEFPUSHBUTTON   "OK", IDMULTIPAD, 76, 60, 32, 14, WS_GROUP
  29.     ICON            IDMULTIPAD, -1, 25, 14, 16, 21
  30. END
  31.  
  32. IDD_FIND DIALOG 18, 13, 167, 69
  33. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  34. CAPTION "Find"
  35. FONT 8, "Helv"
  36. BEGIN
  37.     RTEXT           "&Find:", 100, 6, 12, 31, 10, NOT WS_GROUP
  38.     EDITTEXT        IDD_SEARCH, 43, 11, 114, 12
  39.     CHECKBOX        "&Case Sensitive", IDD_CASE, 19, 28, 137, 12
  40.     DEFPUSHBUTTON   "&Next", IDMULTIPAD, 11, 48, 45, 14
  41.     PUSHBUTTON      "&Previous", IDD_PREV, 63, 48, 45, 14
  42.     PUSHBUTTON      "Cancel", IDMULTIPAD2, 116, 48, 43, 14
  43. END
  44.  
  45. IDD_PRINT DIALOG 56, 61, 128, 66
  46. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  47. CAPTION "Print"
  48. FONT 8, "Helv"
  49. BEGIN
  50.     RTEXT           "Printing", 100, 2, 6, 44, 8, NOT WS_GROUP
  51.     LTEXT           "", IDD_PRINTTITLE, 51, 6, 78, 8, NOT WS_GROUP
  52.     RTEXT           "on the", 102, 4, 15, 43, 8, NOT WS_GROUP
  53.     LTEXT           "", IDD_PRINTDEVICE, 51, 15, 78, 8, NOT WS_GROUP
  54.     RTEXT           "on", 104, 21, 24, 26, 8, NOT WS_GROUP
  55.     LTEXT           "", IDD_PRINTPORT, 51, 24, 78, 8, NOT WS_GROUP
  56.     DEFPUSHBUTTON   "Cancel", IDMULTIPAD, 41, 46, 46, 14
  57. END
  58.