private void btnSalvar_Click(object sender, EventArgs e) { MemoryStream mstream = new MemoryStream(); pcbEvento.Image.Save(mstream, pcbEvento.Image.RawFormat); byte[] img = mstream.ToArray(); evento.nome = txtNome.Text; evento.endereco = txtEndereco.Text; evento.dataHora = Convert.ToDateTime(txtDataHora.Text); evento.valorIngresso = Double.Parse(txtValorIngresso.Text); evento.imgEvent = img; EventoDAO dao = new EventoDAO(); dao.update(evento); MessageBox.Show("Evento alterado com sucesso", "Sucesso!", MessageBoxButtons.OK, MessageBoxIcon.Information); if (loadEventos != null) { loadEventos(); } this.Hide(); }