在delph中如何实现PDF文档打印,我想将PDF文档通过delph打印出来,导入了adobe 的PDF控件后用printall没有任务反应,请教各位大侠了!!

解决方案 »

  1.   

    ShellExecute(Handle, 'print', PChar('c:\test\test.pdf'), nil, nil, SW_SHOW)
      

  2.   

    我可以提供打印的控件[email protected]
      

  3.   

    我稍微测试了一下,没有任何问题啊。procedure TForm1.Button1Click(Sender: TObject);
    begin
      Pdf.LoadFile('sigid.pdf');
      Pdf.gotoFirstPage;
    end;procedure TForm1.Button2Click(Sender: TObject);
    begin
      Pdf.printAll;
    end;
      

  4.   

    printAll有时间可以有时不行!
      

  5.   

    to 老冯:Pdf 是啥阿?第三方控件嘛?