How do I convert bitmap to an array and display it?

Knight Chat X

Member
Joined
Mar 20, 2004
Messages
22
Location
Tulsa, OK
Ive provided a complete yet simple project developed in VB6 in this message which does this, however, I need to be able to do the same in VB. NET, and so far havent found anything about putting the image into an array, then using the array to display image again, or anything about converting array to string, then string to array and displaying image in VB .NET.

-Thanks
 

Attachments

Try Dim _images() As Image. This will set your array to hold and display bitmap images. I think you can also declare the array as bitmap.
 
Back
Top