Source code of Windows XP (NT5)
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

  1. 1 DLGINCLUDE "test.h"
  2. IDM_ABOUT DIALOG 67, 46, 200, 53
  3. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
  4. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  5. CAPTION "About"
  6. FONT 8, "MS Shell Dlg"
  7. BEGIN
  8. ICON "AppIcon", -1, 8, 6, 18, 20
  9. #ifdef UNICODE
  10. LTEXT "OLEDLG.DLL Test Ap - Unicode Version 1.0", -1, 32, 7, 139, 8, NOT
  11. #else
  12. LTEXT "OLEDLG.DLL Test Ap - ANSI Version 1.0", -1, 32, 7, 139, 8, NOT
  13. #endif
  14. WS_GROUP
  15. LTEXT "Copyright 1994 Microsoft Corporation", -1, 32, 18, 139,
  16. 8, NOT WS_GROUP
  17. PUSHBUTTON "OK", IDOK, 80, 33, 40, 14
  18. END