Word.printout打印时指定打印机

 Word.Document   thisDocument   =   null;  
  Word.Application   thisApplication   =   null;//new   Word.ApplicationClass();  
  CreateWordDocument(faxfile,ref   thisDocument,ref   thisApplication);  
  string   printer=thisApplication.ActivePrinter;  
  thisApplication.ActivePrinter="I-FaxPrinter";  
  PrintOutDoc(thisDocument);  
  faxpath=@"c:\tempfax.tif";  
  object   saveChanges   =   Type.Missing;  
  object   originalFormat   =   Type.Missing;  
  object   routeDocument   =Type.Missing;  
  thisApplication.ActivePrinter=printer;  
  thisApplication.Quit(ref   saveChanges,   ref   originalFormat,   ref   routeDocument);
posted @ 2011-01-27 22:27  zhh  阅读(1130)  评论(0编辑  收藏  举报