在 ReportInfo 字段中为活动报告添加时间值?
Add just time value in ReportInfo field for active reports?
我正在尝试为这样的脚本部分报告增加时间
using GrapeCity.ActiveReports;
public string OutputFormat {get; set;}
public void PageHeader_Format()
{
this.ReportInfoTime.OutputFormat = "hh:mm tt";
this.ReportInfoTime.Value = System.DateTime.Today;
}
但是我遇到了这个错误
'GrapeCity.ActiveReports.SectionReportModel.ReportInfo' does not contain a definition for 'OutputFormat' and no extension method 'OutputFormat' accepting a first argument of type 'GrapeCity.ActiveReports.SectionReportModel.ReportInfo' could be found (are you missing a using directive or an assembly reference?)
任何建议。
要使用脚本将 "ReportInfo" 控件的输出格式更改为自定义字符串,您可以将脚本代码替换为以下内容:
public void PageHeader_Format()
{
this.ReportInfo1.FormatString = "{RunDateTime:hh:mm tt}";
}
*其中 "ReportInfo1" 是您的 ReportInfo 控件的名称
我正在尝试为这样的脚本部分报告增加时间
using GrapeCity.ActiveReports;
public string OutputFormat {get; set;}
public void PageHeader_Format()
{
this.ReportInfoTime.OutputFormat = "hh:mm tt";
this.ReportInfoTime.Value = System.DateTime.Today;
}
但是我遇到了这个错误
'GrapeCity.ActiveReports.SectionReportModel.ReportInfo' does not contain a definition for 'OutputFormat' and no extension method 'OutputFormat' accepting a first argument of type 'GrapeCity.ActiveReports.SectionReportModel.ReportInfo' could be found (are you missing a using directive or an assembly reference?)
任何建议。
要使用脚本将 "ReportInfo" 控件的输出格式更改为自定义字符串,您可以将脚本代码替换为以下内容:
public void PageHeader_Format()
{
this.ReportInfo1.FormatString = "{RunDateTime:hh:mm tt}";
}
*其中 "ReportInfo1" 是您的 ReportInfo 控件的名称