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.

73 lines
1.5 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. sendnote.rc
  5. Abstract:
  6. Resource file for send fax note utility program
  7. Environment:
  8. Windows NT fax driver
  9. Revision History:
  10. 02/15/96 -davidx-
  11. Created it.
  12. mm/dd/yy -author-
  13. description
  14. --*/
  15. #include "sendnote.h"
  16. //
  17. // String resources
  18. //
  19. STRINGTABLE
  20. BEGIN
  21. IDS_NO_FAX_PRINTER "Cannot find a fax printer. Make sure there is a fax printer installed."
  22. IDS_CREATEDC_FAILED "Cannot access the selected fax printer. Make sure it is installed correctly."
  23. IDS_SENDNOTE "Fax Note"
  24. END
  25. //
  26. // Dialogs
  27. //
  28. IDD_SELECT_FAXPRINTER DIALOG DISCARDABLE 0, 0, 252, 126
  29. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  30. CAPTION "Select Fax Printer"
  31. FONT 8, "MS Shell Dlg"
  32. BEGIN
  33. LTEXT "There is more than one fax printer installed on your computer. Select the one you want to use:", IDC_STATIC, 10, 10, 232, 16
  34. LISTBOX IDC_FAXPRINTER_LIST, 10, 28, 232, 66, LBS_SORT | LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP
  35. DEFPUSHBUTTON "OK", IDOK, 73, 108, 50, 14
  36. PUSHBUTTON "Cancel", IDCANCEL, 129, 108, 50, 14
  37. END
  38. //
  39. // Icons
  40. //
  41. IDI_FAX_NOTE ICON DISCARDABLE "faxnote.ico"
  42. #include <ntverp.h>
  43. #define VER_FILETYPE VFT_APP
  44. #define VER_FILESUBTYPE VFT2_UNKNOWN
  45. #define VER_FILEDESCRIPTION_STR "Send Note Utility"
  46. #define VER_INTERNALNAME_STR "faxsend"
  47. #define VER_ORIGINALFILENAME_STR "faxsend.exe"
  48. #include "common.ver"