Page 1 of 1

Gflax in Visual Basic 2008

Posted: Sun Apr 13, 2008 11:43 am
by RobertC
Hi !
Im very "green" in serious graphics application , i use VB 2008 for controling external hardware thru rs323 port (VB 2008 is very stable for that applications) , but now i must wrote software to display sequence of pictures on computer screen . There is any examples of uf use GFLAX in Visual Basic 2008 (not VB6) ? Thanks for all help.

Robert

CONTINUE

Posted: Mon Apr 14, 2008 12:55 am
by RobertC
in VB6 - displaing image was realized by :

.LoadBitmap ("c:\TEST 17988.tga")
Picture1.Picture = .GetPicture

in VB2008 i can load thru

Dim Ctrl As GflAx.GflAx
Ctrl = New GflAx.GflAx
Ctrl.LoadBitmap("c:\TEST 17988.tga")
PictureBox1.Image = Ctrl.GetPicture 'ERROR

ERROR there is no PICTURE member
for picturebox

Generaly - no PICTURE properties in VB2008

What can I do ?