I am developing windows application. Now I have got the data in the data set . Now I need that to be displayed in the table format, not in the grid.but in the table format as we get in web applications.Is it possible to achieve it? If so how could it be archived?
display data in table format
Collapse
X
-
Tags: None
-
You could use GDI+ to draw it to a control, if that is what you need. Check this link: CodeProject: Printing of DataGridView. Free source code and programming help (it is actually printing, but it uses the same System.Drawing. Graphics class, so you can reuse most of it).
Or using a WebBrowser control?
Comment