如何动态地建立QuickReport(100分)

  • 主题发起人 主题发起人 Fairys
  • 开始时间 开始时间
F

Fairys

Unregistered / Unconfirmed
GUEST, unregistred user!
下面这样作出错:
void __stdcall PrintTable(char *cTitle)
{
QuickReport1 = new TQuickReport1(Owner);
QuickReport1->lblTitle->Caption = cTitle;
QuickReport1->Preview();
}
 
我现在改成以下这样就不出错了,但用用DLL调用时,按Preview中的Close按钮时出错,
为什么?
void __stdcall PrintTable(char *cTitle)
{
QuickReport1 = new TQuickReport1(QuickReport1);
QuickReport1->lblTitle->Caption = cTitle;
QuickReport1->Preview();
delete QuickReport1;
}
 
把他销毁试试
 
sunboy_del兄是什么意思?
 
这问题现在已经解决了吧?我看到另一个贴子……
 
接受答案了.
 
后退
顶部