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.

62 lines
1.7 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. Send fax application
  9. Revision History:
  10. 02/15/96 -davidx-
  11. Created it.
  12. mm/dd/yy -author-
  13. description
  14. --*/
  15. #include <windows.h>
  16. #include <hlpres.h>
  17. #include "sendnote.h"
  18. //
  19. // String resources
  20. //
  21. STRINGTABLE
  22. BEGIN
  23. IDS_SENDNOTE_NO_FAX_PRINTER "To send a fax you must have a fax printer installed.\n\
  24. You can either attach a local fax device to your computer, which installs a local fax printer, \
  25. or you can add a remote fax printer connection."
  26. IDS_NO_FAX_PRINTER_CONNECTION "To send a fax you must have a remote fax printer connection installed."
  27. IDS_FAX_ACCESS_FAILED "The fax printer cannot be accessed.\nMake sure it is setup properly."
  28. IDS_SENDNOTE "Fax Note"
  29. IDS_PRINTER_OFFLINE "The selected printer connection is unavailable.\n\
  30. Please check that the printer connection is valid and available for use."
  31. END
  32. //
  33. // Dialogs
  34. //
  35. IDD_SELECT_FAXPRINTER DIALOGEX DISCARDABLE 0, 0, 206, 126
  36. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | DS_CONTEXTHELP
  37. CAPTION "Select Fax Printer"
  38. FONT 8, "MS Shell Dlg"
  39. BEGIN
  40. LTEXT "There is more than one fax printer available. \nPlease select one:",
  41. IDC_SENDNOTE_STATIC,7,7,192,19
  42. LISTBOX IDC_FAXPRINTER_LIST,7,31,192,66,LBS_SORT |
  43. LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP,0,HIDC_SelectFP
  44. DEFPUSHBUTTON "OK",IDOK,49,105,50,14,0,0,HIDOK
  45. PUSHBUTTON "Cancel",IDCANCEL,112,105,50,14,0,0,HIDCANCEL
  46. END