Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
how to display converted byte array as image in datagrid

I have inserted images into a sql database. I want to display these images in a datagrid. Currently in my datagrid, I just have a image column and each cell in that column just says Byte[]Array. So i need to convert these byte arrays back to an image and then display these images in the datagrid. I am drawing a blank as to how to do this. any help is appreciated. Thanks

share|improve this question
1  
I'm not seeing any code, perhaps you forgot to post what you've tried so far. – Fosco May 20 '11 at 15:49
can i assume this is webforms? if so, you'll have to write to the response. you'll probably end up having to create your own file handler (which is pretty simple). – Justin Williams May 20 '11 at 15:53
you should answer the comments – John Saunders May 20 '11 at 19:40
Sorry, I normally do...I got really busy at work after posting this... @Justin - no, I am not using webforms. @Fosco - I really dont have any code to show as of yet...i was looking for something to get me jump started. – Joe Smith May 20 '11 at 21:09

marked as duplicate by Fosco, Tom H., Teoman Soygul, user7116, bmargulies May 20 '11 at 23:33

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

You will probably need to inherit from DataGridViewCell and create you own that can convert the byte array to a Bitmap and draw it on herself.

http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcell.aspx

Then with this sample here you'll learn how to use it on your datagrid.

http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcolumn.aspx

share|improve this answer
Thanks for these links, I will look at them today and try to come up with something. – Joe Smith May 20 '11 at 21:09

Not the answer you're looking for? Browse other questions tagged or ask your own question.