How I print from the begging of the page?
Hello everybody,
I am working on an MFC project with only native code.
I am using CDC to print.
My problem is that I cannot set printer page edges exactly to 0.
For example if I give the commad:
Code Snippet
CDC dc;
dc.TextOut(0,0, "Test");
The word "Test" will be printed entire but not from the begining of the page.
In this case I want the word "Test" to be printed from the begging of the page (I do not care if it's first letters wont print).
How I will do this, by a DEVMODE variable or by a dc function?
Thank you a lot for your time and response.

