|
Subject:
|
Create bmp vb6
|
|
Posted By:
|
wehave74
|
Post Date:
|
1/10/2007 9:14:44 AM
|
HOw can I create a bmp file using vb6?
|
|
Reply By:
|
marcostraf
|
Reply Date:
|
1/10/2007 2:59:55 PM
|
easy way: set the AutoRedraw propriety of a PictureBox to True, draw you graphics and then use the SavePicture method
hard way: include in the project the definition of the bitmap file standard headers using the APIViewer, save them and the image data (array of Byte) in a file open in Binary mode.
Let me know if you need more details
"There are two ways to write error-free programs. Only the third one works." Unknown
|
|
Reply By:
|
wehave74
|
Reply Date:
|
1/24/2007 10:42:38 AM
|
Thanks I'll try it
|