void llenarDTGVProductosxD()
        {
            DataTable dt = new DataTable();

            dt = P.MostrarProductos();
            try
            {
                dgvProductos.Rows.Clear();
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    dgvProductos.Rows.Add(dt.Rows[i][0]);
                    dgvProductos.Rows[i].Cells[0].Value = dt.Rows[i][0].ToString();
                    dgvProductos.Rows[i].Cells[1].Value = dt.Rows[i][1].ToString();
                    dgvProductos.Rows[i].Cells[2].Value = dt.Rows[i][2].ToString();
                    dgvProductos.Rows[i].Cells[3].Value = dt.Rows[i][3].ToString();
                    dgvProductos.Rows[i].Cells[4].Value = dt.Rows[i][4].ToString();
                    dgvProductos.Rows[i].Cells[5].Value = dt.Rows[i][5].ToString();
                    dgvProductos.Rows[i].Cells[6].Value = dt.Rows[i][6].ToString();
                    //dgvProductos.Rows[i].Cells[7].Value = Convert.ToDateTime(dt.Rows[i][7].ToString()).ToShortDateString();
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
            dgvProductos.ClearSelection();
        }