Q&A

  • Quick report에서 Preview를 호출하는데요..
메인화면에서 조건을 주는 Form을 호출한뒤
조건을 주고 Report를 실행시킨다음에요..
그 조건을 주는 Form을 close하면
" Abstract Error " 가 나거든요.. 왜 그런 현상이 나타나는 걸까요?
갈켜주세요. T.T

procedure Tuser_ReportForm.BT_actionClick(Sender: TObject);
begin
  Application.CreateForm(Tuser_rep1_Form, user_rep1_Form);
  with user_rep1_Form do
  begin
    sel_Query.Open;
    user_rep1_QuickRep.prepare;
    QRL_pagecnt.Caption := IntToStr(user_rep1_QuickRep.QRPrinter.PageNumber);
    user_rep1_QuickRep.Preview;
    sel_Query.Close;
    Free;
  end;
end;

procedure Tuser_ReportForm.BT_exitClick(Sender: TObject);
begin
  close;
end;
1  COMMENTS
  • Profile
    한만교 2002.11.10 12:37
    폼을 동적으루 생성하신후 메모리를 해제하셨군여.
    클로스시에 남아있는 메모리가 없어서 그런느거 같은데여..free를 없애보시져 글구 폼 클로스시에 action := cafree하시구여..