0
は、私がアプリケーションを実行するとCutePdfライター変換ワード文書は
PrintDialog pDia = new PrintDialog();
PrinterSettings ps = new PrinterSettings();
pDia.Document = printDocumentMessageBoxTest;
pDia.Document.DocumentName = "C:\\FinalGap.doc";
ps.PrinterName = "CutePDF Writer";
ps.PrintToFile = true;
ps.PrintFileName = "C:\\" + Path.GetFileNameWithoutExtension(pDia.Document.DocumentName) + ".pdf";
// take printer settings from the dialog and set into the PrintDocument object
pDia.Document.OriginAtMargins = true;
ps.DefaultPageSettings.Margins.Left = 2;
//printDocumentMessageBoxTest.PrinterSettings = ps;
// start the printing process, catch exceptions
try
{
printDocumentMessageBoxTest.Print();
}
catch (Exception exc)
{
MessageBox.Show("Printing error!\n" + exc.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
を使用してPDFにWord文書を変換するために、次のコードを持って、それは出力ファイルBU Word文書を印刷しているC#でプログラム的CutePdfを使用してPDFに生成されません。 誰も私の言葉の文書をプログラム的にCUTEPDFを使ってpdfに変換する方法を教えてもらえますか?
'printDocumentMessageBoxTest.PrinterSettings = ps;'ステートメントのコメントを削除してみてください。 – Yog