Reputation: 4979
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
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