vote up 0 vote down star
1

I want to store image into my datatable and while adding colum I want to set its default value, sending you code doing with checkboxes..

public void addCheckBoxesRuntime(){ for (int i = 0; i < InformationOne.Length; i++) { dt = new DataColumn(InformationOne[i][1] + " (" + InformationOne[i][0] + " )");

            dt.DataType = typeof(Boolean);

            viewDataTable.Columns.Add(dt);
            dt.DefaultValue = false;                
        }

}

flag

61% accept rate

4 Answers

vote up -1 vote down

This works but how to assign to datagrid ?? DataGrid.DataContext = Datatable;

public static string ImageConversion(System.Drawing.Image image) { if (image == null) return ""; System.IO.MemoryStream memoryStream = new System.IO.MemoryStream(); image.Save(memoryStream, System.Drawing.Imaging.ImageFormat.Gif); string value = ""; for (int intCnt = 0; intCnt <= memoryStream.Length-1; intCnt++) { value = value + memoryStream.ToArray() + ","; } return value; }

Thanks very much

link|flag
vote up -1 vote down

system.drawing.bitmap........ how to convert it into system.drawing.image

I want to show this to user using datagrid and store values in datatable before hand and after workds datagrid.DataContext = dataset.

I hope you get me

link|flag
vote up -2 vote down

I am getting following exceptions Error 3 'System.IO.MemoryStream.ToArray()' is a 'method', which is not valid in the given context D:\MSVisualStudio2008Projects\Studio\WpfApplication4\WpfApplication4\Util.cs 16 57 WpfApplication4

Error 13 No overload for method 'ToArray' takes '1' arguments D:\MSVisualStudio2008Projects\Studio\WpfApplication4\WpfApplication4\Util.cs 18 33 WpfApplication4

Further more I want to assign this datatable to a dataGrid to show to user...

I also want to set default value for image say Cross like I was setting in case of boolean datatable.defaultValue = false;

link|flag
vote up 0 vote down

Make a DataColumn with type string and then store the string binary of the image into the field. Alternatively, use the binary itself with a byte[].

Should work 100%.

Something along the lines of this:

public string ImageConversion(System.Drawing.Image image)
{
    if (image == null) return "";
    System.IO.MemoryStream memoryStream = new System.IO.MemoryStream();
    image.Save(memoryStream, System.Drawing.Imaging.ImageFormat.Gif);
    string value = "";
    for (int intCnt = 0; intCnt <= memoryStream.ToArray.Length - 1; intCnt++) {
        value = value + memoryStream.ToArray(intCnt) + ",";
    }
    return value;
}
link|flag

Your Answer

Get an OpenID
or

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