I have a problem in printing. My problem is that my font sizes differ when I use different printers. The same font is sometimes large and sometimes it is so small.
I read the old posts and found out that I should not use CreareFont(), bacause it depends on the printer's dpi. and I should use CreatePointFont() So, I changed it. but I still have the problem.

CFont Font;
Font.CreatePointFont(300,"Times New Roman");

Would you please help me?