- 积分
- 33
- 在线时间
- 53 小时
- 主题
- 28
- 注册时间
- 2013-8-31
- 帖子
- 132
- 最后登录
- 2019-10-21
- 帖子
- 132
- 软币
- 3320
- 在线时间
- 53 小时
- 注册时间
- 2013-8-31
|
/// <summary>
/// 根据条件查询绑定报表功能
/// </summary>
/// <param name="where">条件查询</param>
private void DatabindReport(string where)
{
DevExpress.XtraReports.UI.XtraReport report = new DevExpress.XtraReports.UI.XtraReport();
report.LoadLayout(Application.StartupPath + @"\BillReport.repx");
if (where != "")
{
report.DataSource = BLL.BillInfo.GetDataSet(where, "");
}
else
{
report.DataSource = BLL.BillInfo.GetDataSet("", "");
}
report.ShowPreviewDialog();
report.Dispose();
} |
评分
-
查看全部评分
|