home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windoware
/
WINDOWARE_1_6.iso
/
source
/
clrctr10
/
clrtest.rc
< prev
next >
Wrap
Text File
|
1991-06-15
|
902b
|
52 lines
/*
Resource script for color selector custom control test program
(C) Scott Gourley, 1991.
*/
#include <windows.h>
/* standard windows programming environment */
#include "winstd.h"
/* color selector test header */
#include "clrtest.h"
/* application icon for color selector test */
ClrTest ICON clrtest.ico
/* applicaton menu for color selector test */
ClrTest MENU
{
POPUP "&File"
{
MENUITEM "E&xit", IDM_EXIT
}
POPUP "&Options"
{
MENUITEM "&Test Color Selector...", IDM_CLRTEST
}
POPUP "\a&Help"
{
MENUITEM "&Index\tF1", IDM_INDEXHELP
MENUITEM "&Commands", IDM_COMMANDHELP
MENUITEM "&Using Help", IDM_USINGHELP
MENUITEM SEPARATOR
MENUITEM "&About Color Test...", IDM_ABOUT
}
}
Accelerators ACCELERATORS
{
VK_F1, IDM_INDEXHELP, VIRTKEY
}
/* color selection test dialog */
#include "clrtest.dlg"