| Bruno Monteiro Lopes 2006-03-22, 7:07 pm |
| Hi,
I'm having a huge headache around Crystal and .Net.
Let me explain:
- I haDve a simple report, with his datasource defined by a TTX file
and his DataSource set to a .Net DataTable.
- That TTX has a Blog field (named myLogo) and I had visually added
that field to my report. The designer created a Blob.Field (according
to tooltip) / IBlobFieldObject (according to properties)
- My DataTable has a DataColum created with
col = New DataColumn("logotipo", GetType(Byte()))
- I have a bmp raw image stored in a OLEObject Access field. My data
layer already retrieves the image data and stores it in a Byte() var.
Lets call it imageBytes.
- To fill my DataColumn (using a new row), I do this:
row.Item("") = imageBytes
- And then I open my report ... but the image does not appear in the
report! :(
I've searched for hours .... so I'm really worried about not getting a
straight solution ...
Can anyone help me ??
|