logeeks
logeeks

Reputation: 4979

how to create print preview of the document printed

I am developing a custom pane which will show up when the user presses 'Print'. This custom pane need to have a print preview. Please tell me how to create dynamic print preview of a document/images,etc.

Thanks in advance

Upvotes: 0

Views: 529

Answers (2)

Davide Piras
Davide Piras

Reputation: 44595

In C++ MFC you have this already done and available for you by MFC framework.

In C# and .NET framework not sure what you can do with the printdocument class. I used devxpress xtrareports in many projects and it pays off very well. Users love the ribbon print preview and you really get stunning ms word like print preview UI with zero coding. except a call to myReport.ShowRibbonPrintPreview .

Upvotes: 0

v01d
v01d

Reputation: 1507

From the c# tag i guess that it's not a problem if you use .Net framework. In this case this is what you want.

Upvotes: 1

Related Questions