当前位置: 代码迷 >> .NET Framework >> asp.net在运行时修改水晶报表头如何修改,详细如下
  详细解决方案

asp.net在运行时修改水晶报表头如何修改,详细如下

热度:58   发布时间:2016-05-02 00:31:49.0
asp.net在运行时修改水晶报表头怎么修改,详细如下
myReport ReportDoc = new myReport(); 
  for (int i = 0; i < ReportDoc .ReportDefinition.ReportObjects.Count; i++)
  {
  try
  {
  TextObject tobj = (TextObject)ReportDoc .ReportDefinition.ReportObjects[i];
  //FieldObject
  tobj.Text = Model.GetMessage(tobj.Text);
   
  }
  catch
  {
  continue;
  }
  }
值是修改了,但就是显示不出来,希望大家帮忙解决一下,谢谢诶

------解决方案--------------------
怎么解决啊,连人都没有
  相关解决方案