Beispiel #1
0
        private void picAdd_Click(object sender, EventArgs e)
        {
            hospitalForm form = new hospitalForm();

            form.DataBind();
            if (form.ShowDialog() == DialogResult.OK)
            {
                DataBind();
            }
            ;
        }
Beispiel #2
0
 private void picupdate_Click(object sender, EventArgs e)
 {
     if (this.gridView1.FocusedRowHandle >= 0)
     {
         object       data = this.gridView1.GetRow(this.gridView1.FocusedRowHandle);
         hospitalForm form = new hospitalForm();
         form.DataBind(data as aers_tbl_hospital);
         if (form.ShowDialog() == DialogResult.OK)
         {
             DataBind();
         }
         ;
     }
 }