Jun 22, 2006 #1 lawlegacy IS-IT--Management Jun 5, 2006 53 US How do I add rows to a datagrid with image columns? I tried datagridview.rows.add( dbnull.value, "hello", "test") but it gave me an error. I just need to know what value to put in for the image column.
How do I add rows to a datagrid with image columns? I tried datagridview.rows.add( dbnull.value, "hello", "test") but it gave me an error. I just need to know what value to put in for the image column.
Jun 22, 2006 1 #2 Loradan Programmer Jun 21, 2006 28 US You need to create a string array and pass that. Try this Dim str as string() = {Nothing, "hello", "test"} datagridview.rows.add(str) Upvote 0 Downvote
You need to create a string array and pass that. Try this Dim str as string() = {Nothing, "hello", "test"} datagridview.rows.add(str)