Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Displaying general vfp field in c#
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Versions des environnements
Environment:
C# 2.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Divers
Thread ID:
01321933
Message ID:
01321985
Vues:
16
>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 its generating "Parameter is not valid"


Try this (this time I tried to run the code)
byte[] ba = (byte[])Tables.Tables["company"].Rows[0]["Image"];
MemoryStream stream = new MemoryStream(ba);
stream.Write(ba, 0, ba.Length);
Bitmap bitmap = (Bitmap)Bitmap.FromStream(stream, true);
this.pictureBox1.Image = bitmap;
Semper ubi sub ubi.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform