请问大家,如何使用FastReport ActiveX实现web打印?

解决方案 »

  1.   

    regsvr32注册一下,然后通过脚本调用就是
      

  2.   

    请问有FastReport ActiveX的组件下载吗?本人网上找了一个,但不知道能不能用,本人不是delphi开发方面的。
      

  3.   

    官方的貌似没有,FastReport
    二次封装的可以设一下,下载
      

  4.   

    regsvr32註冊,然後調用之。。
      

  5.   


     function PrintReport() {
            var dSql = "";
            var tt = "";         dSql = "Select * from table";         tt = FastReport1.ClearAllSqlCommand();
            tt = FastReport1.CloseProc();         tt = FastReport1.AddSqlCommand(dSql);         var PrintTemplate = "";
            PrintTemplate = "e:\\test.fr3";
            FastReport1.PrintReport(PrintTemplate);
        }
    该代码无法打印是怎么回事?  function DesignReport() {
            var PrintTemplate = "e:\\test.fr3";
            FastReport1.DesignReport(PrintTemplate);
        }该代码可以打开设计器加载报表文件。
    请各位指点一下。
      

  6.   

    有同样的困惑, 我是用在 asp.net 上面 不知道如何调用一个ActiveX控件出来 显示报表,求搞人解答