` {MemoryStream ms1 = new MemoryStream();
MemoryStream ms2 = new MemoryStream();
pbox_face.Image.Save(ms1, pbox_face.Image.RawFormat);
pbox_2.Image.Save(ms2, pbox_face.Image.RawFormat);
Pic_face = ms1.ToArray();
pic_card = ms2.ToArray();
pic_passport = null;
cl.add_client(txt_frsName.Text, dateTimePicker1.Value, txt_card.Text, txt_phone.Text,txt_faname.Text,txt_faphone.Text,
txt_moname.Text,txt_mophone.Text, Pic_face, pic_card,pic_passport);}`
how can i fix that?
i try to solve this but i can’t
New contributor
Alaa Rashad is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.