72 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| /*
 | |
|  * EX19WIN.RC
 | |
|  *
 | |
|  *  Header file for ArchiveLib 2.0
 | |
|  *
 | |
|  *  Copyright (c) Greenleaf Software, Inc. 1994 - 1996
 | |
|  *  All Rights Reserved
 | |
|  *
 | |
|  * DESCRIPTION
 | |
|  *
 | |
|  *  This is the RC file used by Windows example program 19.  It
 | |
|  *  has all of the constants defined for use in the RC file that
 | |
|  *  is linked with this example.  Note that the exact same RC
 | |
|  *  is used by both the C++ and C example programs.
 | |
|  *
 | |
|  * REVISION HISTORY
 | |
|  *
 | |
|  *  February 1, 1996  2.0A  : Second release
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef WS_POPUP
 | |
| #include <windows.h>
 | |
| #endif
 | |
| #include "ex19win.h"
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //
 | |
| // Dialog
 | |
| //
 | |
| 
 | |
| ALMainDialog DIALOG 0, -1, 239, 118
 | |
| STYLE WS_CHILD
 | |
| FONT 8, "MS Sans Serif"
 | |
| {
 | |
|  PUSHBUTTON "Create", AL_CREATE, 8, 98, 45, 12
 | |
|  PUSHBUTTON "Rename", AL_RENAME, 67, 98, 45, 12
 | |
|  PUSHBUTTON "Delete", AL_DELETE, 126, 98, 45, 12
 | |
|  PUSHBUTTON "E&xit", AL_EXIT, 185, 98, 45, 12
 | |
|  CTEXT "Windows Example 19: ALName functions", IDC_STATIC, 43, 4, 168, 11
 | |
|  RTEXT "GetName():", -1, 13, 37, 62, 13
 | |
|  EDITTEXT AL_NAME, 83, 37, 95, 11, ES_LOWERCASE | ES_READONLY | NOT WS_TABSTOP | WS_BORDER
 | |
|  RTEXT "GetOldName():", -1, 13, 55, 62, 13
 | |
|  EDITTEXT AL_OLD_NAME, 83, 56, 95, 11, ES_LOWERCASE | ES_READONLY | NOT WS_TABSTOP | WS_BORDER
 | |
|  EDITTEXT AL_GOOD_TAG, 83, 18, 95, 11, ES_LOWERCASE | ES_READONLY | NOT WS_TABSTOP | WS_BORDER
 | |
|  RTEXT "GoodTag():", -1, 13, 19, 62, 13
 | |
|  EDITTEXT AL_SAFE_OLD_NAME, 83, 75, 95, 11, ES_LOWERCASE | ES_READONLY | NOT WS_TABSTOP | WS_BORDER
 | |
|  RTEXT "GetSafeOldName():", -1, 9, 73, 66, 13
 | |
| }
 | |
| 
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //
 | |
| // Icon
 | |
| //
 | |
| 
 | |
| ALIcon ICON "alicon.ico"
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //
 | |
| // Menu
 | |
| //
 | |
| 
 | |
| ALMenu MENU
 | |
| {
 | |
|  POPUP "&File"
 | |
|  {
 | |
|   MENUITEM "E&xit", AL_EXIT
 | |
|  }
 | |
| 
 | |
| }
 |