mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
641 B
20 lines
641 B
1 DLGINCLUDE "test.h"
|
|
|
|
IDM_ABOUT DIALOG 67, 46, 200, 53
|
|
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
|
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
CAPTION "About"
|
|
FONT 8, "MS Shell Dlg"
|
|
BEGIN
|
|
ICON "AppIcon", -1, 8, 6, 18, 20
|
|
#ifdef UNICODE
|
|
LTEXT "OLEDLG.DLL Test Ap - Unicode Version 1.0", -1, 32, 7, 139, 8, NOT
|
|
#else
|
|
LTEXT "OLEDLG.DLL Test Ap - ANSI Version 1.0", -1, 32, 7, 139, 8, NOT
|
|
#endif
|
|
WS_GROUP
|
|
LTEXT "Copyright 1994 Microsoft Corporation", -1, 32, 18, 139,
|
|
8, NOT WS_GROUP
|
|
PUSHBUTTON "OK", IDOK, 80, 33, 40, 14
|
|
END
|
|
|