sending binary image data to a dataGrid
Posted: Sun Mar 17, 2013 12:59 pm
I am using binary image data from a database and trying to populate an image object that is located in a datagrid.
I can easily view the binary data in an image object outside a datagrid by setting the text property of the image object as in
but I can't figure out how to send the data to the image object located in a datagrid (using the form styles not tables)
btw, if the image is locate locally, the following will populate the image object within a datagrid
but I am working with the binary image data from a db.
Does anyone know how this is done?
-Coffee
I can easily view the binary data in an image object outside a datagrid by setting the text property of the image object as in
Code: Select all
set the text of image "categories" to tImageData
btw, if the image is locate locally, the following will populate the image object within a datagrid
Code: Select all
put "images/" & "colors.jpg" into theDataA[1]["ImageURL"]
Does anyone know how this is done?
-Coffee