Declare te function BitBlt. sorry this can't be more easy'er becouse it is alway's like this.
Declare Function BitBlt Lib "gdi32" Alias "BitBlt" _
(ByVal hDestDC As Long, _
ByVal x As Long, _
ByVal y As Long, _
ByVal nWidth As Long, _
ByVal nHeight As Long, _
ByVal hSrcDC As Long, _
ByVal xSrc As Long, _
ByVal ySrc As Long, _
ByVal dwRop As Long) As Long
Put a picture control on your form and make it not visable.
Put a picture in it with load picture our so.
then add line of code (in form load for example)
BitBlt Me.hDC, 0, 0, picbox.ScaleWidth, _
picbox.ScaleHeight, picbox.hDC, 0, 0, vbSrcCopy
explenation.
Me.hDC = where do I need to put my picture on (the form)
0, 0 = top and left coordinates.
picbox.ScaleWidth, picbox.ScaleHeight = what is the size of the picture in width and height. Or How much space do I need to reserve for the picture. (here it is just the size of the picbox)
picbox.hDC = the source. (This object contains the picture.)
0,0 = from where do I need to start drawing the picture.
(here we say from top 0, left 0 so the full pic will be drawn.)
hope this helps.
tank you,
(>" "<)
(='o'=)
-(,,)-(,,)-----
|LORD_GARFIELD|
---------------