Click here to Skip to main content
15,896,541 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi everybody.
i want place a user image into picturebox when user login.its done in windows application using c#.
here is my code:
SqlCommand cmd1 = new SqlCommand("SELECT * FROM forstepb WHERE id =" + id + "", conn);

     SqlDataAdapter adap = new SqlDataAdapter(cmd1);
     DataSet ds1 = new DataSet();
     adap.Fill(ds1,"forstepb");// all work fine
     Byte[] byteBLOBData = new Byte[0];// code is skip in that line
     byteBLOBData = (Byte[])(ds1.Tables[0].Rows[0]["passimg"]);
     MemoryStream stmBLOBData = new MemoryStream(byteBLOBData);
     pictureBox1.Image = Image.FromStream(stmBLOBData);

how can i use in that situation.
pls...
Posted

Solution1 by Zoltan Zorgo[^] is very good, but i want ot share another resources:
Image manipulation and reading and writing to a database[^]
C# Save and Load Image from Database[^]
 
Share this answer
 
v2
Please read this short article: Inserting Images and Reading the Images Through ADO.NET[^].
Be aware, that you posted only the "retrieve" part of your solution (not bad after all), but you need to have the "store" part made accordingly.
 
Share this answer
 
Comments
Maciej Los 20-Apr-13 7:12am    
+5

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900