1¡¢Ê×ÏÈ°²×° Microsoft Office 2007¼ÓÔØÏMicrosoft Save as PDF-¼òÌåÖÐÎİ棺ÏÂÔصØÖ·£º
http://download.microsoft.com/download/3/8/8/388812b2-0d3f-474e-a7ef-b095d3d0d3cd/SaveAsPDF.exe
2¡¢Ð½¨ÍøÕ¾ÏîÄ¿£¬Ìí¼ÓMicrosoft.Office.Interop.WordµÄÒýÓÃ
3¡¢´úÂ룺
/// <summary>
/// ת»»wordΪpdf
/// </summary>
/// <param name="filename">docÎļþ·¾¶</param>
/// <param name="savefilename">pdf±£´æ·¾¶</param>
private void ConvertWordPDF1(object filename, object savefilename)
{
Object Nothing = System.Reflection.Missing.Value;
//´´½¨Ò»¸öÃûΪWordAppµÄ×é¼þ¶ÔÏó
Microsoft.Office.Interop.Word.Application wordApp = new Microsoft.Office.Interop.Word.ApplicationClass();
//´´½¨Ò»¸öÃûΪWordDocµÄÎĵµ¶ÔÏó²¢´ò¿ª
Microsoft.Office.Interop.Word.Document doc = wordApp.Documents.Open(ref filename, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing);
//ÉèÖñ£´æµÄ¸ñʽ
object filefarmat = Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatPDF;
//±£´æΪPDF
doc.SaveAs(ref savefilename, ref filefarmat, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing, ref Nothing);
//¹Ø±ÕÎĵµ¶ÔÏó
doc.Close(ref Nothing, ref Nothing, ref Nothing);
//ÍƳö×齨
wordApp.Quit(ref Nothing, ref Nothing, ref Nothing);
}
object filefarmat = Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatPDF;//ÉèÖñ£´æµÄ¸ñʽ£¬»¹¿ÉÒÔΪÒÔϸñʽ£º
Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatHTML //±£´æΪHTML
Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatRTF //±£´æΪRTF
Microsoft.Office.Interop.Word.WdSaveFormat.wdFormatText //±£´æΪÎı¾
Micros
ÔÚWeb±à³Ì¹ý³ÌÖУ¬´æÔÚןܶలȫÒþ»¼¡£±ÈÈçÔÚÒÔÇ°µÄASP°æ±¾ÖУ¬CookieΪ·ÃÎÊÕߺͱà³ÌÕ߶¼ÌṩÁË·½±ã£¬²¢Ã»ÓÐÌṩ¼ÓÃܵŦÄÜ¡£´ò¿ªIEä¯ÀÀÆ÷£¬Ñ¡Ôñ“¹¤¾ß”²Ëµ¥ÀïµÄ“InternetÑ¡Ï¬È»ºóÔÚµ¯³öµÄ¶Ô»°¿òÀïµ¥»÷“ÉèÖÔ°´Å¥£¬Ñ¡Ôñ“²é¿´Îļþ”°´Å¥£¬ÔÚµ¯³öµÄ´°¿ÚÖУ¬¾Í»áÏÔʾӲÅÌÀï ......