为何无人gz?请ActiveReports专家帮帮忙。多谢了。

解决方案 »

  1.   


    是 Un1() (2001-7-19 23:16:03)  回复我的管用!
    ActiveReport_ReportStart:
    Printer.RenderMode = 1  
      

  2.   

     RainBows(大毛) 
    Printer.RenderMode = 1    是什么意思呢? 
      

  3.   

    KnowledgeBase Article: 1443
    Why is my right aligned text getting truncated? 
    Problem: 
    A report is cutting off a control's last character when its alignment is set to right alignment. 
    Cause: 
    Right aligned text my get truncated if the current printer driver calculates clipping regions incorrectly. 
    Solution: 
    There are a couple of possible solutions to correct this problem. 
    1. Update the printer driver to the latest version available. 
    2. Change the printer driver to an alternate supported printer driver (see printer's manual or web site for alternate supported drivers). 
    3. With ActiveReports 1.0 Service Pack 4 or later and ActiveReports 2.0 add me.Printer.RenderMode = 1 to the ActiveReport_ReportStart event. The RenderMode property causes ActiveReports to compensate for buggy printer drivers. Note: RenderMode is a hidden property.hope to help you
      

  4.   

    前天我将我开发的程序装到客户电脑里,奇怪的是,在那里打印出来的却和预览一样?!·!!
    (#·#·#) 难道是我系统有问题或打印机有问题?!我的打印机是HP6L激光打印机, 客户那边是EPSON720喷墨打印机。各位看官分析分析。  请
      

  5.   

    打印驱动程序的原因.
    手工修改是这样的.你在用激光打印机打印时,设置一下驱动程序,图形模式改为另外一种(我忘了是哪一种了).也就是上面说的那一句.PRINTER.RENDERMODE=1
    我是过HP5000也有这个问题.加上这一句就好了。如果用针式打印机也没有问题。
      

  6.   

    可是我找不到RenderMode=1 这个属性,我在程序中直接输入也不行!
      

  7.   

    Private Sub ActiveReport_ReportStart()
    Printer.RenderMode = 1
    End Sub