Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Displaying general vfp field in c#
Message
From
05/06/2008 16:54:20
 
 
To
05/06/2008 16:46:22
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
C# 2.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01321933
Message ID:
01321983
Views:
15
>>If you change the code to this
>
>
>byte[] ba = (byte[])Tables.Tables["company"].Rows[0]["Image"];
>MemoryStream stream = new MemoryStream(ba);
>Bitmap bitmap = new Bitmap(stream);
>this.pictureBox1.Image = bitmap;
>
>
>does it throw an exception on this line "Bitmap bitmap = new Bitmap(stream);"?
>Yes, this error:
>System.ArgumentException was unhandled
> Message="Parameter is not valid."
> Source="System.Drawing"
> StackTrace:

Probably indicates that the byte array does not hold valid image data (see BitMap Constructor (Stream) in help)
Regards,
Viv
Previous
Reply
Map
View

Click here to load this message in the networking platform