Hi Support,
I have noticed a difference in the way 7.3 displays numbers (possibly text too) from our old 3.5 version. In 7.3 when I display these sample numbers, they are not uniformly presented as they are in 3.5.
The picture below shows the differences, 3.5 above and 7.3 below.
Here's the sample code (in Progress ABL)
VPE 3.5
lv-vpe-hdl = chCtrlFrame:VPE.
lv-vpe-hdl:OpenDoc().
lv-vpe-hdl:ScalePercent = 100.
lv-vpe-hdl:WRITE(100,50,-1,-1, "1234567890").
lv-vpe-hdl:WRITE(100,100,-1,-1, "1000000000").
lv-vpe-hdl:WRITE(100,150,-1,-1, "10000").
lv-vpe-hdl:Preview().
VPE 7.3
lv-vpe-hdl = chCtrlFrame:VPE.
lv-vpe-hdl:OpenDoc().
lv-vpe-hdl:ScalePercent = 100.
lv-vpe-hdl:UnitTransformation = 1000.
lv-vpe-hdl:EngineRenderMode = 0.
lv-vpe-hdl:WRITE(100,50,-2147483549,-2147483549, "1234567890").
lv-vpe-hdl:WRITE(100,100,-2147483549,-2147483549, "1000000000").
lv-vpe-hdl:WRITE(100,150,-2147483549,-2147483549, "10000").
lv-vpe-hdl:Preview().
Kind Regards,
Dave