home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / iwftech.zip / samples / WKFInfo / WKFINFO.RC < prev    next >
Text File  |  1994-06-03  |  3KB  |  51 lines

  1. /****************************************************************************/ 
  2. /*                                                                          */ 
  3. /* PROGRAM NAME: WKFInfo                                                    */ 
  4. /*                                                                          */ 
  5. /* COPYRIGHT:                                                               */ 
  6. /* ----------                                                               */ 
  7. /* Copyright (C) International Business Machines Corp., 1991,1992,1993,1994 */ 
  8. /*                                                                          */ 
  9. /* DISCLAIMER OF WARRANTIES:                                                */ 
  10. /* -------------------------                                                */ 
  11. /* The following [enclosed] code is sample code created by IBM              */ 
  12. /* Corporation.  This sample code is not part of any standard IBM product   */ 
  13. /* and is provided to you solely for the purpose of assisting you in the    */ 
  14. /* development of your applications.  The code is provided "AS IS",         */ 
  15. /* without warranty of any kind.  IBM shall not be liable for any damages   */ 
  16. /* arising out of your use of the sample code, even if they have been       */ 
  17. /* advised of the possibility of such damages.                              */ 
  18. /*                                                                          */ 
  19. /* REVISION LEVEL: 2.1                                                      */ 
  20. /* -------------------                                                      */ 
  21. /*                                                                          */ 
  22. /* This program illustrates using the project and actions profile APIs to   */ 
  23. /* obtain information about a project and its actions.                      */ 
  24. /*                                                                          */ 
  25. /****************************************************************************/ 
  26.  
  27. #include <os2.h>
  28. #include "wkfinfo.h"
  29.  
  30. DLGTEMPLATE IDD_DLG LOADONCALL MOVEABLE DISCARDABLE
  31. {
  32.     DIALOG  "WorkFrame/2 Information", IDD_DLG, 0, 0, 235, 155, WS_VISIBLE,
  33.             FCF_SYSMENU | FCF_TITLEBAR | FCF_SIZEBORDER | FCF_MAXBUTTON
  34.     {
  35.         MLE             "", IDD_MLE, 0, 0, 235, 141, MLS_READONLY |
  36.                         MLS_HSCROLL | MLS_VSCROLL | WS_GROUP
  37.     }
  38. }
  39.  
  40.  
  41. MENU IDM_DLG_ACTIONBAR
  42. {
  43.     SUBMENU      "~File",               IDM_FILE, MIS_TEXT
  44.     {
  45.         MENUITEM "~Open project...",    IDM_FILE_OPEN, MIS_TEXT
  46.         MENUITEM SEPARATOR
  47.         MENUITEM "~Save text...",       IDM_FILE_SAVE, MIS_TEXT
  48.     }
  49. }
  50.  
  51.