Yes, jpg and png images is supported. Perhaps problem in the DBVista formats, how images stored in database.
try follwing code to create image from some record:
private static Image GetImage(DataRowView dr, string fieldname)
{
byte[] buff = dr[fieldName] as byte[];
return buff != null ? Image.FromStream(new System.IO.MemoryStream(buff)) : null;
}
I would to know:
1. That returned by dr[fieldName]?
2. That returned by this method