0
への接続に失敗しましたが、このメッセージを取得しています。致命的なエラー:AcrobatがDDEサーバーへの接続に失敗しました印刷は:AcrobatはAdobe Readerを使用して印刷しようとしましたDDEサーバー
Dim AcroRd32ExePath As String = GetAcroRdPath()
Dim startInfo As New ProcessStartInfo()
startInfo.FileName = AcroRd32ExePath
startInfo.Arguments = String.Format(" /s /o /h /t ""{0}"" ""{1}""", fileName, PrinterName2)
startInfo.UseShellExecute = False
startInfo.CreateNoWindow = True
startInfo.WindowStyle = ProcessWindowStyle.Hidden
Process.Start(startInfo)
'CAUTION: Adobe Reader silently rejects the print job if the printer name doesn't match case exactly
'The following switches are available:
'/n - Launch a new instance of Reader even if one is already open
'/s - Don't show the splash screen
'/o - Don't show the open file dialog
'/h - Open as a minimized window
'/p <filename> - Open and go straight to the print dialog
'/t <filename> <printername> <drivername> <portname> - Print the file the specified printer.
'http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf
方法私はそれを修正するのですか?