在发开报表时,使用了锐浪报表。
需要注意的一些细节:
1、给staticbox设置文本,通过GridppReport的变量,使用ControlByName获取到控件后进行设置文字
_report.ControlByName("OrganizationName").AsStaticBox.Text = "你好";
2、给staticbox设置文本,也可以使用”报表主对象“下参数集合下的参数进行设置。首先对staticbox的数据中的参数设置好Parameter1,然后设置参数的文本,即可进行关联。
_report.ParameterByName("Parameter1").AsString = "你好";
时间: 2024-10-08 10:09:45