private void tool_grabar_Click(object sender, EventArgs e)
        {
            if (txtcategoria.Text == "" || txtdescripcion.Text == "")
            {
                MessageBox.Show("Los datos Marcados con (*) son datos obligatorios", "Alerta", MessageBoxButtons.OK, MessageBoxIcon.Information);
                txtcategoria.Focus();
                return;
            }
            else
            {
                string cat = txtcategoria.Text;

                if (modificar)
                {
                    modificar = false;
                    OPTION    = "OK";
                    this.Close();
                }
                else
                {
                    if (Opln.existeCategoria(cat))
                    {
                        MessageBox.Show("Cedula ya esta Registrado");
                        txtcategoria.Focus();
                        return;
                    }
                    else
                    {
                        OPTION = "OK";
                        this.Close();
                    }
                }
            }
        }