Hi There,
i've got this problem:
I want to copy the small file1.bmp onto the bigger file2.bmp (a wallpaper) with VB... i think the API way is the right... but i don't know how to do that! Can somebody help me :confused: ??? plz....
Thx for any help
Printable View
Hi There,
i've got this problem:
I want to copy the small file1.bmp onto the bigger file2.bmp (a wallpaper) with VB... i think the API way is the right... but i don't know how to do that! Can somebody help me :confused: ??? plz....
Thx for any help
Do you just want to overwrite the file ?
If so then :
VB Code:
FileCopy "c:\file1.bmp", "c:\file2.bmp"
...
well, i don't want to overwrite this File.
I want the 2 Files become 1 File. The bigger File should be the background and the smaller, therefor the foreground :)
Well in that case, you could perhaps load the larger picture into a picturebox with its AutoSize property set to True, and then use BitBlt to paint the smaller picture into the middle of the larger one. Then you could try saving that picture using the SavePicture statement.