Ejemplo n.º 1
0
 private void CargaGrid()
 {
     WSLicitaciones.WSLicitaciones WSLic = new WSLicitaciones.WSLicitaciones();
     WSLic.Url             = mdlGenerales.DireccionWS + "FazServices/WSLicitaciones.asmx";
     DSDevuelve            = WSLic.DevuelvePersonalLicitacionesDisp(mdlGenerales.Conexion, lblIDooss.Text.ToString());
     DTMain                = DSDevuelve.Tables[0];
     DVMain                = DTMain.DefaultView;
     GGCPersLiq.DataSource = null;
     GGCPersLiq.TableDescriptor.Reset();
     GGCPersLiq.TableDescriptor.AllowNew = false;
     GGCPersLiq.Refresh();
     GGCPersLiq.DataSource = DVMain;
     FormatColumnas();
     AplicarFilterBar();
 }