Vb.net mysql обновление двух изображений в одной и той же форме
Привет
Я пытаюсь обновить 2 изображения в одной и той же форме, используя 2 графических поля и 2 диалоговых окна
, Я могу обновить только первое изображение с помощью PictureBox1, но, к сожалению, я не вижу никаких изменений, примененных ко второму ! .
Я использую следующий код :-
updateQuery = " UPDATE Student, Relatives , Relatives_Student , Gardian_Relation SET Student_First_Name = '" & txt_F_name.Text _ & "', Student_Middle_Name = '" & txt_M_name.Text _ & "', Student_Third_Name = '" & txt_T_name.Text _ & "', Student_Family_Name = '" & txt_Fm_name.Text _ & "', Student_DOB = '" & txt_DOB_Date.Text _ & "', Student_Photo = @Student_Photo" _ & "', Student_DOB_Cert = @Student_DOB_Cert" _ & "', Student_Gender = '" & strGender _ & "', Student_Nationality = '" & strCountry _ & "', Student_Enroll_Date = '" & txt_En_Date.Text _ & "' WHERE Student_ID = '" & intMySelectedCell _ & "' AND Student.Student_ID = Relatives_Student.rel_Student_ID AND Relatives.Relative_ID = Relatives_Student.rel_Relative_ID AND Relatives.Gardiant_Relation_ID = Gardian_Relation.Gardian_ID AND gardian_relation.Gardian_ID = '" & intGardian_ID & "'" Dim command As New MySqlCommand(updateQuery, connection) With command Dim bm As Bitmap = New Bitmap(PictureBox1.Image) Dim bm2 As Bitmap = New Bitmap(PictureBox2.Image) bm.Save(mstream, PictureBox1.Image.RawFormat) bm2.Save(mstream2, PictureBox2.Image.RawFormat) Dim arrPic() As Byte = mstream.GetBuffer() .Parameters.AddWithValue("@Student_Photo", arrPic) Dim arrPic2() As Byte = mstream2.GetBuffer() .Parameters.AddWithValue("@Student_DOB_Cert", arrPic2) .ExecuteNonQuery() End With Any help is extremely appritiated. Kind regards Salim What I have tried: I have success to update only the first Image