home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / warptlk3.zip / TOOLKIT / SAMPLES / WPS / WSFILE / WSFILE.RC < prev    next >
Text File  |  1995-08-24  |  2KB  |  53 lines

  1. /******************************************************************************
  2. *
  3. *  File Name   : WSFILE.RC
  4. *
  5. *  Description : Define Work Place Shell Sample resources and dialogs
  6. *
  7. *  Copyright (C) 1995 IBM Corporation
  8. *
  9. *      DISCLAIMER OF WARRANTIES.  The following [enclosed] code is
  10. *      sample code created by IBM Corporation. This sample code is not
  11. *      part of any standard or IBM product and is provided to you solely
  12. *      for  the purpose of assisting you in the development of your
  13. *      applications.  The code is provided "AS IS", without
  14. *      warranty of any kind.  IBM shall not be liable for any damages
  15. *      arising out of your use of the sample code, even if they have been
  16. *      advised of the possibility of such damages.                                                    *
  17. *
  18. ******************************************************************************/
  19.  
  20. #include "wsfile.ih"
  21.  
  22. POINTER ID_ICON LOADONCALL MOVEABLE DISCARDABLE wsfile.ico
  23.  
  24. STRINGTABLE
  25. BEGIN
  26.    ID_TITLE "WSFILE"
  27. END
  28.  
  29. MENU ID_ALARMMENU LOADONCALL MOVEABLE DISCARDABLE
  30. BEGIN
  31.    MENUITEM "~Sound Alarm", IDM_SOUNDALARM
  32. END
  33.  
  34. MENU ID_OPENMENU LOADONCALL MOVEABLE DISCARDABLE
  35. BEGIN
  36.    MENUITEM "~Open Workplace Shell File", IDM_OPENWSFILE
  37. END
  38.  
  39. DLGTEMPLATE IDD_LASTWORKER LOADONCALL MOVEABLE DISCARDABLE
  40. BEGIN
  41.     DIALOG  "Last Worker", IDD_LASTWORKER, 11, 17, 190, 134, NOT FS_DLGBORDER |
  42.             WS_VISIBLE
  43.     BEGIN
  44.         CTEXT           "Last User:", 100, 64, 112, 50, 8, DT_VCENTER
  45.         ENTRYFIELD      "", IDC_LASTWORKER, 35,89,90,8, ES_MARGIN
  46.         PUSHBUTTON      "~Undo", ID_UNDO, 11, 9, 40, 14
  47.         PUSHBUTTON      "~Default", ID_DEFAULT, 71, 9, 40, 14
  48.         CONTROL         "~Help", ID_HELP, 131, 9, 40, 14,WC_BUTTON,
  49.                         BS_PUSHBUTTON | BS_HELP | BS_NOPOINTERFOCUS |
  50.                         WS_TABSTOP | WS_VISIBLE
  51.     END
  52. END
  53.