private void BuscarTPMV() { if (txt_MesTPMV.Text != "") { if (int.Parse(txt_MesTPMV.Text) > 12 | int.Parse(txt_MesTPMV.Text) == 0) { MessageBox.Show("Ingrese un mes correcto"); txt_MesTPMV.Focus(); return; } else { TablaProductos = producto.ReporteTPMV(txt_MesTPMV.Text); if (TablaProductos.Rows.Count == 0) { MessageBox.Show("No hubo ventas en el mes ingresado", "ATENCIÓN"); } } } else { MessageBox.Show("Ingresar Mes", "ATENCIÓN"); txt_MesTPMV.Focus(); } }