I'm currently writing and application which requires a form to be printed once it has been completed. The size of the form means that it cannot all be viewed on screen at the same time. I am currently using the following code to print the form:
Form1.Print;
The problem is that this only prints the visible part of the form and I want to print the whole form. Does anybody know how I can print the whole form, even the part that are not currently on screen.
Form1.Print;
The problem is that this only prints the visible part of the form and I want to print the whole form. Does anybody know how I can print the whole form, even the part that are not currently on screen.