XTreme Logo

If you appreciate these tips, please consider a small donation:

General Tip
By a guest contributor

VB6 Bug Using Printer.Scale to Print a Graph
This information applies specifically to VB6.
This VB Tip is provided courtesy of our friend Larry Berger.

The problem: A graph prints reversed as a result of using code such as...
    printer.scale ( 0,5)-(10,0)

The solution: Use instead code such as...
    printer.scaletop = 5
    printer.scaleleft = 0
    printer.scaleheight = -5
    printer.scalewidth = 10

[ Back To The Top ]

Contact: web@xtremecomp.com
All contents copyright XTreme Computing unless noted otherwise.