Hi All,
I am trying to write binary data to a file, which is bmp image:
Open "d:\temp\test00 1.bmp" For Binary Access Write As #1
Put #1, 1, strImage
Close #1
*** strImage contains binary data
when i try to open the bmp it show invalid bitmap file.
Appreciate if anyone can help.
Thanks
kee
I am trying to write binary data to a file, which is bmp image:
Open "d:\temp\test00 1.bmp" For Binary Access Write As #1
Put #1, 1, strImage
Close #1
*** strImage contains binary data
when i try to open the bmp it show invalid bitmap file.
Appreciate if anyone can help.
Thanks
kee
Comment