81 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| /*
 | |
|  * EX17WIN.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 17.  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 "ex17win.h"
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //
 | |
| // Dialog
 | |
| //
 | |
| 
 | |
| ALMainDialog DIALOG 0, 0, 189, 143
 | |
| STYLE WS_CHILD
 | |
| FONT 8, "MS Sans Serif"
 | |
| {
 | |
|  PUSHBUTTON "Create List", AL_CREATE_LIST, 113, 22, 63, 12
 | |
|  PUSHBUTTON "Delete List", AL_DELETE_LIST, 113, 43, 63, 12
 | |
|  PUSHBUTTON "Delete Duplicates", AL_DELETE_DUPLICATES, 113, 64, 63, 12
 | |
|  PUSHBUTTON "&About", AL_ABOUT, 113, 85, 63, 12
 | |
|  PUSHBUTTON "E&xit", AL_EXIT, 113, 106, 63, 12
 | |
|  EDITTEXT AL_DIR_MASK, 42,118,53,12
 | |
|  LISTBOX AL_INPUT_FILES, 22,21,74,89, LBS_SORT | LBS_EXTENDEDSEL | WS_VSCROLL
 | |
|  LTEXT "&Dir mask:", IDC_STATIC, 7,119,34,11
 | |
|  CTEXT "Windows Example 17: Make a list", IDC_STATIC, 6, 3, 157, 11
 | |
| }
 | |
| 
 | |
| ALAboutDialog DIALOG 0, 0, 145, 70
 | |
| STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
 | |
| CAPTION "Dialog"
 | |
| FONT 8, "MS Sans Serif"
 | |
| {
 | |
|  DEFPUSHBUTTON "OK", IDOK, 47,51,50,14
 | |
|  ICON "ALICON", IDC_STATIC, 6,6,18,20
 | |
|  CTEXT "Greenleaf Archive Library 2.0", IDC_STATIC, 31,10,103,12
 | |
|  CTEXT "Copyright (c) 1994-1996", IDC_STATIC, 39, 24, 88, 12
 | |
| }
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //
 | |
| // Icon
 | |
| //
 | |
| 
 | |
| ALIcon ICON "alicon.ico"
 | |
| 
 | |
| //////////////////////////////////////////////////////////////////////////////
 | |
| //
 | |
| // Menu
 | |
| //
 | |
| 
 | |
| ALMenu MENU
 | |
| {
 | |
|  POPUP "&File"
 | |
|  {
 | |
|   MENUITEM "E&xit", AL_EXIT
 | |
|  }
 | |
|  POPUP "&Help"
 | |
|  {
 | |
|   MENUITEM "&About", AL_ABOUT
 | |
|  }
 | |
| }
 |