today. net Forum saw someone raise this question, and I also tried to display the Code of the image as follows:
<Br/> 'first, set the columntype of the column to datagridviewimagecolumn. <br/> private sub form1_load (byval sender as system. object, byval e as system. eventargs) handles mybase. load </P> <p> me. coltx. imagelayout = maid. zoom 'sets the Image Layout </P> <p> end sub </P> <p> private sub datagridview1_cellformatting (byval sender as object, byval e as system. windows. forms. datagridviewcellformattingeventargs) handles datagridview1.cellformatting </P> <p> 'path of the image to be displayed <br/> dim path as string = "C: /desktop/2.gif" </P> <p> 'reads an image as a file stream <br/> dim file as filestream = new filestream (path, filemode. open) </P> <p> dim PIC as image = image. fromstream (File) </P> <p> file. close () </P> <p> If e. columnindex = 0 then <br/> E. value = PIC <br/> end if </P> <p> end sub
images can be displayed, but in GIF format, the image is still and will not be moved. I don't know why! You need to study it!