frxReport赋值问题,帮忙解决一下,谢谢
((TfrxMemoView)frxReport1->FindObject("Memo2")).Memo->Text="123";
在FASTRESPORT里面有个Memo2,现在想在程序外部向报表赋值,但是提示错误:
[BCC32 Error] SDIMAIN.CPP(56): E2459 VCL style classes must be constructed using operator new
请问如何解决,谢谢
[解决办法]
((TfrxMemoView *)frxReport1->FindObject("Memo2"))->Memo->Text = "123";