Printing Grid View

  • Thread starter Thread starter Priyal
  • Start date Start date
P

Priyal

Hello everybody,

I have got one windows application build in C#.net.

On final page i have got two Gridview with different data and i need to
print that two Gridview into A4 size paper.

i have tried to do print using screen capture but its not proving any good.

I will be thankful if anyone can tell me how to print DataGridView..

Regards,

Priyal
 
Hello everybody,

I have got one windows application build in C#.net.

On final page i have got two Gridview with different data and i need to
print that two Gridview into A4 size paper.

i have tried to do print using screen capture but its not proving any good.

I will be thankful if anyone can tell me how to print DataGridView..

Regards,

Priyal

Doesn't the application provide a way to print the data?? If not try
using ScreenHunter otherwise.

I hope you are not asking how to enable print through C# code.

-Cnu.
 
Hello everybody,

I have got one windows application build in C#.net.

On final page i have got two Gridview with different data and i need to
print that two Gridview into A4 size paper.

i have tried to do print using screen capture but its not proving any good.

I will be thankful if anyone can tell me how to print DataGridView..
Is printing the controls and the data they contain really a
requirement? The data and its format are obviously important. How the
formatting gets done should be relatively unimportant as long as it is
done properly.

I suggest using a reporting tool to generate printed documents which
display the data in the desired format.

regards
A.G.
 
Back
Top