I\'m working on redeveloping an Access based system into c#.net, however when MS went from office 2003 to office 2007 they removed the picture editor within access - which m
In my case the following function worked. The data are stored by a VB6 application.
public static byte[] ConvertOleBytesToRawBytes(byte[] oleBytes)
{
// The default encoding is in my case - Western European (Windows), Code Page 1252
return Encoding.Convert(Encoding.Unicode, Encoding.Default, (byte[])oleBytes);
}