Printing using Adobe Reader > Fatal Error: Acrobat failed to connect to a DDE Server
Printing using Adobe Reader > Fatal Error: Acrobat failed to connect to a DDE Server
尝试使用 Adobe Reader 进行打印,但收到此消息:致命错误:Acrobat 无法连接到 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
我该如何解决?
有一位用户同时拥有 Adobe Acrobat Standard 和 Adobe Reader。事实证明他们之前从未真正打开过 Reader。我所要做的就是手动打开 Reader 并接受许可条款。工作正常!
尝试使用 Adobe Reader 进行打印,但收到此消息:致命错误:Acrobat 无法连接到 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
我该如何解决?
有一位用户同时拥有 Adobe Acrobat Standard 和 Adobe Reader。事实证明他们之前从未真正打开过 Reader。我所要做的就是手动打开 Reader 并接受许可条款。工作正常!