Q&A

  • 퀵레포트출력시 한장씩 건너뛰며 출력되요..
rbdetail에



if (recordcount > 1) or (Recordcount < 4) then

begin

MoreData := true;

end

else

MoreData := false;



위와같이 코딩하였는데 preview시 3장출력되어야 하는데 출력은 3장이 되지만

공백 한장이 끼워있어서 정작 두장만 출력됩니다.

왜 그런가요????

2  COMMENTS
  • Profile
    바버 2001.04.04 04:05
    빈 페이지가 출력되는 이유는 잘 모르겠구요...



    아래 소스에서요... MoreData는 항상 True 상태로 있을 것같습니다...



    > if (recordcount > 1) or (Recordcount < 4) then

    > begin

    > MoreData := true;

    > end

    > else

    > MoreData := false;



    if (recordcount > 1) and (Recordcount < 4) then



    요게 맞는 거 아닌가요...?

  • Profile
    왕초보 2001.04.04 04:12
    바버 wrote:

    > 빈 페이지가 출력되는 이유는 잘 모르겠구요...

    >

    > 아래 소스에서요... MoreData는 항상 True 상태로 있을 것같습니다...

    >

    > > if (recordcount > 1) or (Recordcount < 4) then

    > > begin

    > > MoreData := true;

    > > end

    > > else

    > > MoreData := false;

    >

    > if (recordcount > 1) and (Recordcount < 4) then

    >

    > 요게 맞는 거 아닌가요...?



    조급한 맘에 or로 올렸네요... 그런데 빈페이지 출력은 왜 되는지 모르겠네요.