Exemple #1
0
 public void CargaGrid(String StrClave, String Detalle)
 {
     WSLicitaciones.WSLicitaciones WSLic = new WSLicitaciones.WSLicitaciones();
     WSLic.Url             = mdlGenerales.DireccionWS + "FazServices/WSLicitaciones.asmx";
     DSDevuelve            = WSLic.DevuelveBitacoraLicitaciones(mdlGenerales.Conexion, StrClave);
     DTMain                = DSDevuelve.Tables[0];
     DVMain                = DTMain.DefaultView;
     GGCPersLiq.DataSource = null;
     GGCPersLiq.TableDescriptor.Reset();
     GGCPersLiq.TableDescriptor.AllowNew = false;
     GGCPersLiq.Refresh();
     GGCPersLiq.DataSource = DVMain;
     FormatColumnas();
     AplicarFilterBar();
     this.Text = "Bitacora de: " + Detalle;
 }