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
Gflax in Visual Basic 2008
Moderators: helmut, XnTriq, xnview
CONTINUE
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 ?
.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 ?