stimulsoft reports中怎么进行判断赋值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stimulsoft reports中怎么进行判断赋值相关的知识,希望对你有一定的参考价值。

参考技术A 例:
if (数据代码=="判断内容")
Text46.Enabled = true;
else
Text46.Enabled = false;

在打印事件中,打印前设置
参考技术B http://gxtv.cntv.cn/qs/

stimulsoft Report报表使用笔记

1.使用设计器设计mrt报表模板,或者从其他文件复制修改

2.删除business object 数据源

3.使用代码添加数据源

ParcelChangeItem change = new ParcelChangeItem();
string filename = @"D:\\worki\\xxx信息.mrt";
Stimulsoft.Report.StiReport report = new StiReport();
report.Load(filename);
report.Dictionary.Clear();
report.RegBusinessObject("parcel", parcel);
report.Dictionary.SynchronizeBusinessObjects(1);
report.Dictionary.Synchronize();
report.Save(filename);

4.再绑定报表各字段,字段上右键,选设计。

5.使用

RegcardEx aa = new RegcardEx()
{
  ExIndex = "22",
  RegDate = "2015-9-9",
  RegType = "初始登记",
  RegContent = "aaaaa"
};
RegcardParcel parcel = new RegcardParcel()
{
  ParcelCode = "aaaaaa",
  IsAreaUnitSquaremeter = true, 
  OwnerName = "xt张三",
  CardExItem = aa
};
StiReport report = new StiReport();
report.Load(@"F:\\stimulsoft报表\\报表模板\\土地登记卡.mrt");
report.RegBusinessObject("land", "Regcard", parcel);
report.Compile();
report.Render(true);
report.Show();

注意,定义的对象,类名,与报表里的名称关键字不可以重名,否则报对象已存在错误。

其他类型使用待补充

 

列表及底部边线

List<RegcardEx> cers = new List<RegcardEx>() {
new RegcardEx(){ExIndex = "22",RegDate = "2015-9-9",RegType = "初始登记",RegContent = "aaaaa" },
new RegcardEx(){ExIndex = "22",RegDate = "2015-9-9",RegType = "初始登记",RegContent = "aaaaa" },
new RegcardEx(){ExIndex = "22",RegDate = "2015-9-9",RegType = "初始登记",RegContent = "aaaaa" },
new RegcardEx(){ExIndex = "22",RegDate = "2015-9-9",RegType = "初始登记",RegContent = "aaaaa" },
};
StiReport report = new StiReport();
report.Load(@"F:\\stimulsoft报表\\报表模板\\土地登记卡续表.mrt");
report.RegBusinessObject("land", "cardex", cers);
report.Compile();
report.Render(true);
report.Show();
}

 

以上是关于stimulsoft reports中怎么进行判断赋值的主要内容,如果未能解决你的问题,请参考以下文章

stimulsoft Report报表使用笔记

Stimulsoft Report/Group Report报表类型简单实现

Stimulsoft Reports如何创建新的数据转换编辑数据转换

stimulsoft reports中的databand区中的相同数据,如何可以设置为打印出时合并单元格显示

Stimulsoft报表操作笔记:统计

如何从 C# WPF 中的嵌入字体将字体文件添加到 Stimulsoft 报告