کل کدش اینه



SqlConnection objcon = new SqlConnection("Data Source=GG-PC;Initial Catalog=test2;Integrated Security=True");
SqlDataAdapter adap = new SqlDataAdapter();
DataSet objset = new DataSet();




byte[] buffer1 = (byte[])objset.Tables["Picture"].Rows
[listBox1.SelectedIndex][0];

MemoryStream stream = new MemoryStream();
PictureBox box2 = pictureBox2;
stream.Write(buffer1,0,buffer1.Length);
box2.Image = Image.FromStream(stream);
box2.SizeMode = PictureBoxSizeMode.CenterImage;
box2.BorderStyle = BorderStyle.Fixed3D;
box2 = null;
stream.Close();