This says my printer (HP LaserJet MFP M227) reports a slightly different aspect ratio than 11/8.5. Why the discrepancy? I don't have a different printer to try it on.
oh ... I should have used Client Get Size.
Code:
Function PBMain() As Long Local w,h As Long XPrint Attach Default XPrint Get Client To w,h ? Str$(h/w) + $CrLf + Str$(11/8.5) '1.306 vs 1.294 XPrint Cancel End Function
Comment