veshkaushi
veshkaushi

Reputation:

How to print a C# Windows form as a word doc would be printed?

How to print a Windows form as a word doc would be printed?

I do have a windows form, the content of which, including labels and textbox values, i want to print. I did have the thought of using reports, but it would be very hard to create it, so i'm asking for a simple way of doing it (the printing). So this question popped out. Is it possible?

Upvotes: 0

Views: 3876

Answers (2)

Darrin Lynn
Darrin Lynn

Reputation: 158

in visual studio 2008 in c# under Visual basic Powerpacks there is a PrintForm object you can add, the tool tip states "allows you to easily print a window form as a simple report."

Upvotes: 1

Jake Pearson
Jake Pearson

Reputation: 27717

Here is an article on CodeProject that should walk you through what you want.

Upvotes: 0

Related Questions