private void dataListadoCat_DoubleClick(object sender, EventArgs e)
        {
            frmProducto form = frmProducto.GetInstancia();

            int    id;
            string nombrecat;

            id        = Convert.ToInt32(this.dataListadoCat.CurrentRow.Cells["IdProductoCategoria"].Value);
            nombrecat = Convert.ToString(this.dataListadoCat.CurrentRow.Cells["Nombre"].Value);

            form.setCategoria(id, nombrecat);
            this.Hide();
        }