9494
放两列qrlabel用来显示内容

解决方案 »

  1.   

    不用绑定
    直接在程序中给qrlabel赋值
      

  2.   

    quickrep的page属性下有一个columns的属性,可设置列数
      

  3.   

    quickrep的page属性下有一个columns的属性,可设置列数  
    yes
      

  4.   

    columns属性可以设置列数的
    右击quickreport便可以找到了
      

  5.   

    quickrep的page属性下有一个columns的属性,可设置列数 
      

  6.   

    你可以这么做:创建一个有四个列的表(newtable):工资1 奖金1  工资2  奖金2
    Var
      i:integer;
    ====================
    if NewTable.active then
         NewTable.active:=false;
      NewTable.EmptyTble;
      NewTable.active:=true;
      i:=0;
      with OldTable  do
      Begin
        if not active then
           active:=true
        else
           first;
       while not eof do
      begin
        if i=0 then
        begin
        newtable.append;
        newtable.edit;
        newtable.fieldbyname('工资1').value:=fields[0].value;
        newable.fieldbyname('奖金1').value:=fields[1].value;
       i:=1;
     end
     else
     begin
        newtable.fieldbyname('工资2').value:=fields[0].value;
        newable.fieldbyname('奖金2').value:=fields[1].value;
        newtable.post;   
        i:=0;
     end;
     next;
    end;
    newtable1.post;
    End;
    然后,用此NEWTABLE做为你要做的报表的数据源
      

  7.   

    我设了列数。但是我的字段说明放到PAGEHEAD区不能跟着值显示,放到head区,则不是我想要的东西,怎么办
    工资 奖金  工资  奖金
    120  200  300  500