home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM User 1995 January
/
CDuser6Jan95.iso
/
WING
/
PALANIM.RC_
/
PALANIM.RC
Wrap
Text File
|
1994-06-19
|
1KB
|
51 lines
/*
* PALANIM.RC
*
* (C) Copyright Microsoft Corp. 1994. All rights reserved.
*
* You have a royalty-free right to use, modify, reproduce and
* distribute the Sample Files (and/or any modified version) in
* any way you find useful, provided that you agree that
* Microsoft has no warranty obligations or liability for any
* Sample Application Files which are modified.
*/
#include <windows.h>
#include "palanim.h"
AppIcon ICON palanim.ico
AppAbout DIALOG 22, 17, 144, 75
STYLE WS_POPUP | WS_DLGFRAME
BEGIN
CTEXT "Microsoft Windows" -1, 37, 5, 60, 8
CTEXT "WinG Palette Animation App" -1, 0, 14, 144, 8
CTEXT "Version 1.00" -1, 38, 34, 64, 8
CTEXT "Copyright 1994, Microsoft Corp." -1, 5, 47,132, 9
ICON "AppIcon" -1, 9, 23, 0, 0
DEFPUSHBUTTON "Ok" IDOK, 53, 59, 32, 14, WS_GROUP
END
AppMenu menu
begin
POPUP "&File"
begin
MENUITEM "&About..." , MENU_ABOUT
MENUITEM "E&xit" , MENU_EXIT
end
POPUP "&Wash"
begin
MENUITEM "&Red", MENU_RED
MENUITEM "&Green", MENU_GREEN
MENUITEM "&Blue", MENU_BLUE
MENUITEM SEPARATOR
MENUITEM "Include &Static Colors", MENU_STATIC
end
POPUP "&Animation"
begin
MENUITEM "&Palette", MENU_PALETTE
MENUITEM "&Curtain", MENU_CURTAIN
end
end