private void button1_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(richTextBox1.Text) == false)
     {
         MessageBox.Show("Llene todos los campos obligatorios");
         return;
     }
     if (!string.IsNullOrEmpty(richTextBox2.Text) == false)
     {
         MessageBox.Show("Llene todos los campos obligatorios");
         return;
     }
     Base_de_datos.Actualizar_cita(int.Parse(Base_de_datos.cita), richTextBox1.Text, richTextBox2.Text);
     MessageBox.Show("Guardado con exito");
     richTextBox1.Enabled = false;
     richTextBox2.Enabled = false;
     button2.Enabled      = true;
 }