Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
535
Image in Grid using Datatable
posted

Hi,

i have a Datatable with a column of Bytes.
In order to avoid storing images in the Database every Byte stands for a single image from the resource.

The Table is bound as DataSource:

ugrdSender.DataSource = senderDataSet;

The Column of Bytes should be replaced with the recording image of the recource:

newRowBase["Online"] =Properties.Resources.S32gn;

But this can't work, as the data is bytes an not an image.

How to replace the bytes in the column with an image in the grid?

thanks for every idea ..;-)

Torsten