ImageList the old way...

  • Thread starter Thread starter Sam Carleton
  • Start date Start date
S

Sam Carleton

I have an BMP from the C/C++ world which is 16x400 which is a
"list of images". The images are still being used in the C/C++
world and I would like to use the same image in a C# tree control.
Can it be done? If so, now?

Sam
 
Hi Sam,
do you mean that you have a single file that contains multiple 16x400
bitmap images stored sequentially?

If so then in C# you could open the file and read the binary data from the
start point to end point of one of the bitmap images then save it in a file
or load it into a Bitmap object.

Look at the BinaryReader and Bitmap objects help for more information.

Mark.
 
Back
Top