private void tool_nuevo_Click(object sender, EventArgs e)
        {
            frmEditCategoria fp    = new frmEditCategoria();
            DialogResult     resul = new DialogResult();

            resul = fp.ShowDialog();
            if (fp.OPTION == "OK")
            {
                try
                {
                    // Op.IdProveedor = int.Parse(fp.txtId.Text);
                    Op.Categoria1  = fp.txtcategoria.Text;
                    Op.Descripcion = fp.txtdescripcion.Text;

                    OPLN.InsertarCategoria(Op);
                    MostrarProvedores();
                }
                catch (Exception mes)
                {
                    MessageBox.Show(mes.Message);
                }
            }
        }