Posted by Howard Casto on 15, 2001 at 2:47 PM:
In Reply to: Re: Boris please read...... posted by Boris on 15, 2001 at 5:04 AM:
sweet.. that outta work because i can adjust the z-order of a pic box if i do it that way... and it it's definately not a prob painting it on the form
thanks
: In A-Player, I use PaintX.dll
: the link : http://www.paintlib.de/paintlib/
: (it is base of the gnu Paintlib)
: the way I use it:
: - on my form, I have a not visible picture box (pb) with AutoSize to true
: - on the form load, I move this pb out of the form (pb.left=screen.width)
: - to load a picture : pb.picture=paintx.loadpicture(filename)
: - to show the picture as I want : I just do a StretchBlt (the win api)
: something like
: StretchBlt form.hdc,x,y,w,h,pb.hdc,0,0,pb.width,pb.height,vbSrcCopy
: Ok ?
: Boris