home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
VSCPPv8.zip
/
VACPP
/
IBMCPP
/
samples
/
IOC
/
CNR
/
ACNR.RC
< prev
next >
Wrap
Text File
|
1995-03-27
|
3KB
|
66 lines
/******************************************************************************/
/* Container Sample Program - Resource File (ACNR.RC) */
/* */
/* COPYRIGHT: Copyright (C) International Business Machines Corp., 1992,1993. */
/* */
/* DISCLAIMER OF WARRANTIES: */
/* The following [enclosed] code is sample code created by IBM */
/* Corporation. This sample code is not part of any standard IBM product */
/* and is provided to you solely for the purpose of assisting you in the */
/* development of your applications. The code is provided "AS IS", */
/* without warranty of any kind. IBM shall not be liable for any damages */
/* arising out of your use of the sample code, even if they have been */
/* advised of the possibility of such damages. */
/******************************************************************************/
/* NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE */
/******************************************************************************/
#include "acnr.h" //Symbolic Definitions
ICON WND_MAIN brazil.ico
ICON IBMLOGO mesa.ico
ICON CLOGO cpp2.ico
ICON WLOGO wklogo.ICO
ICON OSLOGO os2logo.ICO
STRINGTABLE
BEGIN
WND_MAIN, "Container Sample" //Title Bar String (main id)
WND_DEPT, "CnrEx - Department View" //Title Bar String (dept id)
END
MENU ID_POPMENU
BEGIN
MENUITEM "Edit Record", MI_EDRECORD
MENUITEM "Edit Name", MI_EDNAME
MENUITEM "Edit Code", MI_EDCODE
MENUITEM "Edit Address", MI_EDADDRESS
END
MENU WND_MAIN //Main Window Menu (WND_MAIN)
BEGIN
SUBMENU "Views", ID_VIEWS
BEGIN
MENUITEM "showTextView", ID_VTEXT
MENUITEM "showFlowedTextView", ID_VFTEXT
MENUITEM "showNameView", ID_VNAME
MENUITEM "showFlowedNameView", ID_VFNAME
MENUITEM "showDetailsView", ID_VDETAILS
MENUITEM "showTreeIconView", ID_VTICON
MENUITEM "showTreeTextView", ID_VTTEXT
MENUITEM "showTreeNameView", ID_VTNAME
MENUITEM "showIconView", ID_VICON
MENUITEM "arrangeIconView", ID_VARRANGE
END
SUBMENU "Edit", MI_EDIT
BEGIN
MENUITEM "select All objects" , ID_MARKALL
MENUITEM "deselect All objects", ID_UNMARKALL
END
SUBMENU "Filters", ID_FILTERS
BEGIN
MENUITEM "Show Only level Selected", ID_FILTER1
MENUITEM "Show All", ID_FILTER2
END
END