Quote Originally Posted by bushmobile
try putting:
VB Code:
  1. [i]labelname[/i].Refresh
after you Blt the picture
That doesn't work well either, plus I'd prefer to make this code so I don't have to worry about the control that are over the picbox, and so make it more portable.

Quote Originally Posted by jcis
If you use PaintPicture you won't have this problem
VB Code:
  1. Picture1.PaintPicture YourPic, 0, 0, Picture1.ScaleWidth, Picture1.ScaleHeight
Uhm, right now what I do is creating directly a DC, and using StretchBlt with picture1.hdc. Your method would imply using a Image and its LoadPicture method, wouldn't it? or do you mean some other thing? I'll give a try to this.