private void Btn_Guardar_Click(object sender, EventArgs e)
        {
            if ((txt_NDoc.Text == "") && (txt_NDos.Text == ""))
            {
                MessageBox.Show("Todos los campos son obligatorios");
            }
            else
            if (MessageBox.Show("Esta seguro de  estado?", "mensaje", MessageBoxButtons.OKCancel) == System.Windows.Forms.DialogResult.OK)
            {
                string strMensaje = "";
                int    intResul   = clsFunc.CambiarEstado(txt_NDoc.Text, txt_NDos.Text, ref strMensaje);

                MessageBox.Show(strMensaje);
            }
        }
        private void grdDatos_KeyDown(object sender, KeyEventArgs e)
        {
            if ((grdDatos.CurrentCell.ColumnIndex == 0) || (grdDatos.CurrentCell.ColumnIndex == 1))
            {
                if (e.KeyCode == Keys.Delete)
                {
                    string strMensaje = "";
                    int    intResul   = clsFunc.CambiarEstado(grdDatos.Rows[grdDatos.CurrentRow.Index].Cells[0].Value.ToString(),
                                                              grdDatos.Rows[grdDatos.CurrentRow.Index].Cells[1].Value.ToString(), ref strMensaje);

                    grdDatos.Rows[grdDatos.CurrentRow.Index].Cells[0].Value = 0;
                    //numero de pelicula
                    grdDatos.Rows[grdDatos.CurrentRow.Index].Cells[1].Value = 0;
                }
            }
        }