Susan Harkins
harkins at iglou.com
Thu Aug 28 18:51:02 CDT 2003
Below, I've listed a simple example of using the Circle method. There are three sets of circles in each example, and the first two are commented out -- simply uncomment and comment to see the variety, but that's not the question. The same arguments are producing different results in different databases on the same system -- which I find truly odd. An editor re-created the example on his system and they samples were very different. He then, copied his code from his sample database into mine and they worked as expected -- truly odd since both mdbs were running on the same system. Any clues? I'm clueless. Susan H. Private Sub Report_Page() Me.DrawWidth = 50 'Me.Circle (Me.ScaleWidth / 2, Me.ScaleHeight / 2), 2000, vbRed, 0, 3.142 'Me.Circle (Me.ScaleWidth / 2, Me.ScaleHeight / 2), 1700, vbYellow, 0, 3.142 'Me.Circle (Me.ScaleWidth / 2, Me.ScaleHeight / 2), 1400, vbBlue, 0, 3.142 'Me.Circle (0, 0), 2000, vbRed, , 3.142 'Me.Circle (0, 0), 1700, vbYellow, , 3.142 'Me.Circle (0, 0), 1400, vbBlue, , 3.142 Me.Circle (Me.ScaleWidth / 2, Me.ScaleHeight / 2), 2000, vbRed, , , 1 Me.Circle (Me.ScaleWidth / 2, Me.ScaleHeight / 2), 1700, vbYellow, , , 1 Me.Circle (Me.ScaleWidth / 2, Me.ScaleHeight / 2), 1400, vbBlue, , , 1 End Sub