Maximum LineWidth problem
Posted: Tue Feb 12, 2008 4:27 am
Hello
when i do this code to draw a circle in vb6
everything is fine, the circle has line width =10:
But
If want more widther line and i put LineWidth = 20
Then the circle width get only 1 point
Is this a Bug ?
when i do this code to draw a circle in vb6
everything is fine, the circle has line width =10:
Code: Select all
Dim Ctrl As GflAx.GflAx
Set Ctrl = New GflAx.GflAx
With Ctrl
.LoadBitmap App.Path & "\image.jpg" 'Load the file
.LineWidth = 10
.DrawCircle 110, 110, 100
Me.Picture = .GetPicture 'Display picture
End With
Set Ctrl = Nothing
If want more widther line and i put LineWidth = 20
Code: Select all
Dim Ctrl As GflAx.GflAx
Set Ctrl = New GflAx.GflAx
With Ctrl
.LoadBitmap App.Path & "\image.jpg" 'Load the file
.LineWidth = 20
.DrawCircle 110, 110, 100
Me.Picture = .GetPicture 'Display picture
End With
Set Ctrl = Nothing
Is this a Bug ?