Leaked source code of windows server 2003
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.

34 lines
1.1 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Copyright (C) 1993-1996 Microsoft Corporation. All Rights Reserved.
  3. //
  4. // MODULE: xputil.dlg
  5. //
  6. // PURPOSE: <???>
  7. //
  8. #ifndef WIN16
  9. #include "xputil.h"
  10. #else
  11. //
  12. // XPUTIL.H defines too many symbols, so 16bit RC's symbol table is overflown.
  13. // Following symbols are what we really need.
  14. //
  15. #define idcXPErrDetails 101
  16. #define idcXPErrSep 102
  17. #define idcXPErrError 103
  18. #define idcXPErrDetailText 104
  19. #endif //!WIN16
  20. iddTransportErrorDlg DIALOG DISCARDABLE 0, 0, 286, 170
  21. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  22. CAPTION "Outlook Express"
  23. FONT 8, "MS Shell Dlg"
  24. BEGIN
  25. DEFPUSHBUTTON "OK",IDOK,175,63,50,14
  26. PUSHBUTTON "&Details >>",idcXPErrDetails,229,63,50,14
  27. CONTROL "",idcXPErrSep,"Static",SS_ETCHEDHORZ,7,82,272,1
  28. ICON idiError,IDC_STATIC,7,7,21,20
  29. LTEXT "",idcXPErrError,39,7,240,50,SS_NOPREFIX
  30. EDITTEXT idcXPErrDetailText,7,88,272,74,ES_MULTILINE |
  31. ES_AUTOVSCROLL | ES_READONLY | WS_VSCROLL
  32. END