首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

frxReport赋值有关问题,帮忙解决一下,多谢

2013-03-27 
frxReport赋值问题,帮忙解决一下,谢谢 ((TfrxMemoView)frxReport1-FindObject(Memo2)).Memo-Text123

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";

热点排行