714dd74636
git-svn-id: svn://10.65.10.50/trunk@5350 c028cbd2-c16b-5b4b-a496-9718f37d4682
79 lines
2.4 KiB
Plaintext
Executable File
79 lines
2.4 KiB
Plaintext
Executable File
/*
|
|
* EX15WIN.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 15. 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 "ex15win.h"
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Dialog
|
|
//
|
|
|
|
ALMainDialog DIALOG 0, 0, 221, 246
|
|
STYLE WS_CHILD
|
|
FONT 8, "MS Sans Serif"
|
|
{
|
|
EDITTEXT AL_DIR_MASK, 93, 108, 115, 13
|
|
PUSHBUTTON "E&xit", AL_EXIT, 70, 228, 45, 12, WS_TABSTOP
|
|
LISTBOX AL_INPUT_FILES, 22, 36, 80, 77, LBS_STANDARD | LBS_EXTENDEDSEL | WS_TABSTOP
|
|
CTEXT "Windows Example 15: Get Archive Status", IDC_STATIC, 16, 6, 168, 11
|
|
RTEXT "Archive Name:", -1, 23, 124, 62, 13
|
|
EDITTEXT AL_ARCHIVE_NAME, 93, 124, 115, 13, ES_LOWERCASE | ES_READONLY | NOT WS_TABSTOP | WS_BORDER
|
|
LISTBOX AL_ARCHIVE_LISTING, 127, 36, 74, 72, LBS_STANDARD | LBS_EXTENDEDSEL
|
|
RTEXT "Dir mask:", -1, 34, 108, 51, 15
|
|
CTEXT "Double Click on Archive", -1, 22, 19, 161, 10
|
|
EDITTEXT AL_ARCHIVE_VERSION, 93, 140, 115, 13, ES_LOWERCASE | ES_READONLY | NOT WS_TABSTOP | WS_BORDER
|
|
RTEXT "Archive Version:", -1, 23, 140, 62, 13
|
|
EDITTEXT AL_ARCHIVE_STATUS_CODE, 93, 156, 115, 13, ES_LOWERCASE | ES_READONLY | NOT WS_TABSTOP | WS_BORDER
|
|
RTEXT "Archive Status Code:", -1, 14, 156, 71, 13
|
|
EDITTEXT AL_ARCHIVE_STATUS_STRING, 93, 172, 115, 13, ES_LOWERCASE | ES_READONLY | NOT WS_TABSTOP | WS_BORDER
|
|
RTEXT "Archive Status String:", -1, 7, 172, 78, 13
|
|
RTEXT "Archive Status Detail:", -1, 7, 188, 78, 13
|
|
EDITTEXT AL_ARCHIVE_STATUS_DETAIL, 93, 188, 115, 13, ES_LOWERCASE | ES_READONLY | NOT WS_TABSTOP | WS_BORDER
|
|
RTEXT "First Duplicate Entry:", -1, 7, 204, 78, 13
|
|
EDITTEXT AL_DUPLICATE_ENTRY_NAME, 93, 204, 115, 13, ES_LOWERCASE | ES_READONLY | NOT WS_TABSTOP | WS_BORDER
|
|
}
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Icon
|
|
//
|
|
|
|
ALIcon ICON "alicon.ico"
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Menu
|
|
//
|
|
|
|
ALMenu MENU
|
|
{
|
|
POPUP "&File"
|
|
{
|
|
MENUITEM "E&xit", AL_EXIT
|
|
}
|
|
|
|
}
|
|
|