Page 1 of 1

Maximum LineWidth problem

Posted: Tue Feb 12, 2008 4:27 am
by mlafefon
Hello
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
But
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
Then the circle width get only 1 point
Is this a Bug ?

Re: Maximum LineWidth problem

Posted: Tue Feb 12, 2008 7:23 am
by xnview
mlafefon wrote: Is this a Bug ?
Yes currently you can't make a line more than 10

Re: Maximum LineWidth problem

Posted: Tue Feb 12, 2008 8:41 am
by mlafefon
xnview wrote:
mlafefon wrote: Is this a Bug ?
Yes currently you can't make a line more than 10
Thank you.
Is this bug going to be fixed at the next version? Or sense I bought a license of the light version, can you send me a fixed version of GflAx?
Regaeds
Amir