private void CargarReporte() { DataSet DSDevuelve = new DataSet(); DataTable DTMain = new DataTable(); this.MdiParent = MFMdi.ActiveForm; this.Left = 0; this.Top = 0; WSLicitaciones.WSLicitaciones WSLic = new WSLicitaciones.WSLicitaciones(); WSLic.Url = mdlGenerales.DireccionWS + "FazServices/WSLicitaciones.asmx"; DSDevuelve = WSLic.DevuelveRepExpLicPersonal(mdlGenerales.Conexion); Report.Database.Tables[0].SetDataSource(DSDevuelve.Tables[0]); CRVReport.ReportSource = Report; CRVReport.Zoom(100); CRVReport.Visible = true; }