home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The World of Computer Software
/
World_Of_Computer_Software-02-385-Vol-1of3.iso
/
p
/
ptv3n5.zip
/
STATUS.ZIP
/
STATDEMO.RC
< prev
next >
Wrap
Text File
|
1992-08-25
|
2KB
|
61 lines
#include "statdemo.rch"
ID_MENU MENU
BEGIN
POPUP "&File"
BEGIN
MENUITEM "&Open\tF3", CM_FILE_OPEN
MENUITEM "&Save\tF2", CM_FILE_SAVE
MENUITEM "Save &as", CM_FILE_SAVEAS
MENUITEM "&Close", CM_FILE_CLOSE
MENUITEM SEPARATOR
MENUITEM "E&xit\tAlt+X", CM_FILE_EXIT
END
POPUP "&Edit"
BEGIN
MENUITEM "&Undo\tAlt+Bksp", CM_EDIT_UNDO
MENUITEM "&Redo\tShift+Alt+Bksp", CM_EDIT_REDO
MENUITEM SEPARATOR
MENUITEM "Cu&t\tShift+Del", CM_EDIT_CUT
MENUITEM "&Copy\tCtrl+Ins", CM_EDIT_COPY
MENUITEM "&Paste\tShift+Ins", CM_EDIT_PASTE
MENUITEM "D&elete\tDel", CM_EDIT_DELETE
END
END
STRINGTABLE
BEGIN
1, "System menu"
2, "File management commands (open, save, etc.)"
3, "Edit commands (Undo, Cut, Copy, etc.)"
END
STRINGTABLE
BEGIN
999, "Select Yes button to end program"
CM_FILE_OPEN, "Locate and open a file"
CM_FILE_SAVE, "Save current file"
CM_FILE_SAVEAS, "Save file under a different name"
CM_FILE_CLOSE, "Close current file"
CM_FILE_EXIT, "Exit the application"
CM_EDIT_UNDO, "Undo most recent operation"
CM_EDIT_REDO, "Redo most recently undone operation"
CM_EDIT_CUT, "Cut selected information"
CM_EDIT_COPY, "Copy selected information to clipboard"
CM_EDIT_PASTE, "Paste clipboard information to window"
CM_EDIT_DELETE, "Delete selected information"
END
STRINGTABLE
BEGIN
SC_RESTORE, "Restore window to normal size"
SC_MOVE, "Change window position"
SC_SIZE, "Change window dimensions"
SC_MINIMIZE, "Shrink window to an icon"
SC_MAXIMIZE, "Expand window to full screen"
SC_CLOSE, "Close window and end program"
SC_TASKLIST, "Switch to another program"
END