I am working Windows form Application in c#.I like to create crystal report from datagridview values instead of using database values. How can i do this,Is it possible to do this.how can add the values in crystal report dynamically
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
You could create a DataSet and populate it with the values from the DataGridView. You can then bind the Crystal Report to the DataSet.
Something along the lines of:
To retrieve the rows from a DataGridView you will need something like this: