private void InicializarReportesComprasInsumosConFecha() { if (!ContextControls.ContainsKey("ReporteVentasPorFecha")) { ReporteVentasPorFecha pnlReportesFecha = new ReporteVentasPorFecha(); pnlReportesFecha.Dock = DockStyle.Fill; DevExpress.XtraTab.XtraTabPage tabItem = new DevExpress.XtraTab.XtraTabPage(); tabItem.Controls.Add(pnlReportesFecha); tabItem.Text = "Reporte Compras con fecha"; xtraTabControl.TabPages.Add(tabItem); xtraTabControl.SelectedTabPage = tabItem; ContextControls.Add("ReporteVentasPorFecha", pnlReportesFecha); } }