如何使用Asp.Net在crystal report中显示选定的值

时间:2014-03-14 06:34:22

标签: vb.net crystal-reports-2008

我有员工详细信息表和至少40个字段我必须asp.net。想在水晶报告中报道。每个字段都有复选框,如果我选中一些复选框,字段只想在水晶报表中显示

所以任何人都可以帮我解决这个问题,对不起我的英语

1 个答案:

答案 0 :(得分:0)

您可以控制报告数据源 例如

 foreach (DataGridViewRow row in dataGridView1.Rows)
                {
                    DataGridViewCheckBoxCell ch1 = new DataGridViewCheckBoxCell();
                    ch1 = (DataGridViewCheckBoxCell)row.Cells["Check"];
                      if (ch1.Value !=null )
                    {
                    }
                    else 
                    {
                    }
                }

或者您可以在Crystal报表中禁止Row,哪个Check = false