Search found 4 matches

by mlafefon
Thu Feb 21, 2008 5:29 am
Forum: GFL SDK
Topic: GFL v2.80 registration problem on win 98
Replies: 2
Views: 1426

Any help here?

no?
by mlafefon
Mon Feb 18, 2008 5:49 pm
Forum: GFL SDK
Topic: GFL v2.80 registration problem on win 98
Replies: 2
Views: 1426

GFL v2.80 registration problem on win 98

Hello
I just tested GFL v2.80 on windows 98 SE and when i try to make regsvr32.exe
to the file gflax.dll i get an error message:
load library failed
error 0x00000485

Is this a bug?
Can you fix it ?

Amir
by mlafefon
Tue Feb 12, 2008 8:41 am
Forum: GFL SDK
Topic: Maximum LineWidth problem
Replies: 2
Views: 1356

Re: Maximum LineWidth problem

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
by mlafefon
Tue Feb 12, 2008 4:27 am
Forum: GFL SDK
Topic: Maximum LineWidth problem
Replies: 2
Views: 1356

Maximum LineWidth problem

Hello
when i do this code to draw a circle in vb6
everything is fine, the circle has line width =10:


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 ...