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.

59 lines
1.6 KiB

  1. /*++
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. faxstres.rc
  5. Abstract:
  6. This file contains all resources for faxstres.exe
  7. Author:
  8. Wesley Witt (wesw) 1-Nov-1996
  9. Environment:
  10. User Mode
  11. --*/
  12. #include <windows.h>
  13. #include <commctrl.h>
  14. #include <ntverp.h>
  15. #include "resource.h"
  16. #define VER_FILETYPE VFT_APP
  17. #define VER_FILESUBTYPE VFT2_UNKNOWN
  18. #define VER_FILEDESCRIPTION_STR "Windows NT FAX Stress Application"
  19. #define VER_INTERNALNAME_STR "faxstres.exe"
  20. #define VER_ORIGINALFILENAME_STR "faxstres.exe"
  21. #include "common.ver"
  22. APPICON ICON "faxstres.ico"
  23. IDD_STRESS DIALOG 0, 0, 382, 170
  24. LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
  25. STYLE WS_MINIMIZEBOX | WS_CAPTION | WS_SYSMENU
  26. CAPTION "Fax Stress"
  27. FONT 8, "MS Shell Dlg"
  28. CLASS "FaxStress"
  29. BEGIN
  30. CONTROL "Use Exchange",IDC_USE_EXCHANGE,"Button",BS_AUTOCHECKBOX |
  31. WS_TABSTOP,10,15,65,10
  32. LTEXT "Copies:",IDC_STATIC,110,15,30,8
  33. EDITTEXT IDC_COPIES,139,12,40,14,ES_AUTOHSCROLL | ES_NUMBER
  34. LTEXT "Documents:",IDC_STATIC,10,40,45,8
  35. PUSHBUTTON "Add...",IDC_ADD_DOCUMENTS,100,35,50,14
  36. LTEXT "Recipients:",IDC_STATIC,195,40,45,8
  37. PUSHBUTTON "Add...",IDC_ADD_RECIPIENTS,320,35,50,14
  38. LISTBOX IDC_DOCUMENT_LIST,10,55,140,75,LBS_SORT | LBS_NOINTEGRALHEIGHT |
  39. WS_VSCROLL | WS_TABSTOP
  40. CONTROL "",IDC_RECIPIENT_LIST,"SysListView32",LVS_REPORT |
  41. LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP,195,55,175,75
  42. DEFPUSHBUTTON "OK",IDOK,133,149,50,14
  43. PUSHBUTTON "Cancel",IDCANCEL,199,149,50,14
  44. END