how can i create a column that can display 2 images in one column on datagridview?
i tried to create 2 datagridviewimagecolumn (for the different images)
and if it the cell in it contains the same image path.
the image will match depending on the path on the cell.
this must combine in one column (as shown on the figure below)
for example.
here i will create 2 datagridimagecolumn
DataGridViewImageColumn img1 - new DataGridViewImageColumn();
Image Simg1 = Image.FromFile (C:\Desktop\Green.jpg);
img1.Image = Simg1;
dgv.Columns.Add(img1); //it will display on the datagridview
DataGridViewImageColumn img2 - new DataGridViewImageColumn();
Image Simg2 = Image.FromFile (C:\Desktop\Red.jpg);
img2.Image = Simg1;
dgv.Columns.Add(img2);
if the generated column from the sql server looks like this
column1
---------
c:\Desktop\Greeen.jpg
c:\Desktop\Green.jpg
c:\Desktop\Red.jpg
c:\Desktop\Green.jpg
how will i do this one.
the green path will display green image.
and the red path will contain red image.