예제 #1
0
 private void CargaGrid()
 {
     WSLicitaciones.WSLicitaciones WSLic = new WSLicitaciones.WSLicitaciones();
     WSLic.Url  = mdlGenerales.DireccionWS + "FazServices/WSLicitaciones.asmx";
     DSDevuelve = WSLic.DevuelveEmpresaLicitaciones(mdlGenerales.Conexion,
                                                    txtRubro.Text.ToString(), txtCertificado.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();
 }