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

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

2012-11-16 
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

请问如何解决,谢谢

[解决办法]

C/C++ code
((TfrxMemoView *)frxReport1->FindObject("Memo2"))->Memo->Text = "123"; 

热点排行