home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dde.zip / PM / PMDDE.RC < prev    next >
Text File  |  1994-05-19  |  3KB  |  67 lines

  1. #include <os2.h>
  2. #include "pmdde.h"
  3. #include "dialog.h"
  4.  
  5. ICON ID_RESOURCE PMDDE.ICO
  6.  
  7. MENU ID_RESOURCE PRELOAD
  8. BEGIN
  9.    SUBMENU "~File"                   , IDM_FILE
  10.    BEGIN
  11.       MENUITEM "~DDE Conversation...", IDM_FILE_DDE
  12.       MENUITEM "~About..."           , IDM_FILE_ABOUT
  13.       MENUITEM SEPARATOR
  14.       MENUITEM "E~xit\tAlt+F4"       , IDM_FILE_EXIT
  15.    END
  16. END
  17.  
  18.  
  19. DLGTEMPLATE DLG_ABOUT PRELOAD MOVEABLE DISCARDABLE
  20. BEGIN
  21.     DIALOG  "PM <---> Win-OS/2 DDE Sample", DLG_ABOUT, 125, 31, 239, 191,
  22.             FS_SCREENALIGN | WS_VISIBLE, FCF_SYSMENU | FCF_TITLEBAR
  23.     BEGIN
  24.         LTEXT           "by Larry Morley                (c) 1993, 1994", 201,
  25.                         23, 167, 198, 8
  26.         LTEXT           "-------------", 202, 23, 158, 74, 9
  27.         LTEXT           "The author can be reached at:", 203, 14, 142, 133,
  28.                         9
  29.         LTEXT           "6909 Custer #2503", 204, 23, 129, 89, 9
  30.         LTEXT           "Plano, TX 75023", 205, 23, 121, 80, 9
  31.         LTEXT           "High Perfomance, Quality Custom Applications", 206,
  32.                         17, 51, 203, 9
  33.         LTEXT           "CompuServe: 75360,563", 207, 13, 102, 108, 8
  34.         LTEXT           "Network Design And Construction", 208, 17, 43, 146,
  35.                         8
  36.         LTEXT           "Database Solutions", 209, 148, 96, 83, 8
  37.         LTEXT           "Telecommunications", 210, 147, 105, 88, 8
  38.         LTEXT           "Contact us for all of your computing needs!", 211,
  39.                         23, 30, 190, 8
  40.         LTEXT           "Free Preliminary", 212, 149, 127, 76, 9
  41.         LTEXT           "estimates and", 213, 157, 121, 64, 8
  42.         LTEXT           "evaluations", 214, 158, 114, 61, 8
  43.         LTEXT           "and represents:", 215, 14, 92, 67, 8
  44.         LTEXT           "Enlightened Computer Solutions", 216, 48, 78, 137,
  45.                         8
  46.         LTEXT           "The only computing source you'll ever need.", 217,
  47.                         27, 69, 188, 8
  48.         DEFPUSHBUTTON   "~Ok", DID_OK, 152, 6, 78, 14
  49.     END
  50. END
  51.  
  52. DLGTEMPLATE DLG_DDE LOADONCALL MOVEABLE DISCARDABLE
  53. BEGIN
  54.     DIALOG  "DDE Transaction Dialog", DLG_DDE, 109, 80, 281, 126,
  55.             FS_SCREENALIGN | WS_VISIBLE, FCF_SYSMENU | FCF_TITLEBAR
  56.     BEGIN
  57.         LTEXT           "Send:", 103, 9, 112, 28, 8
  58.         ENTRYFIELD      "", EF_SEND, 11, 101, 256, 8, NOT ES_AUTOSCROLL |
  59.                         ES_MARGIN
  60.         LTEXT           "Received data:", 102, 9, 84, 68, 8
  61.         MLE             "", EF_REPLY, 8, 26, 262, 56, MLS_VSCROLL |
  62.                         MLS_IGNORETAB | WS_GROUP
  63.         DEFPUSHBUTTON   "~Send Message", PB_TRANSACT, 123, 4, 91, 14
  64.         PUSHBUTTON      "~Cancel", DID_CANCEL, 220, 4, 49, 14
  65.     END
  66. END
  67.