private void verToolStripMenuItem_Click(object sender, EventArgs e) { ocultarPanels(); pVerMov.Width = 591; pVerMov.Height = 301; Point p = new Point(); p.X = 58; p.Y = 125; pVerMov.Location = p; pVerMov.Visible = true; Servicio allMovi = new Servicio(); VerMovimientos mov = new VerMovimientos(); JavaScriptSerializer serm = new JavaScriptSerializer(); string cXg = serm.Serialize(mov); string resG = allMovi.llamarServicio(cXg); var dato = serm.Deserialize <List <allMov> >(resG); dgvMovimientos.DataSource = null; dgvMovimientos.DataSource = dato; timeActualizar.Start(); }
public void timeActualizar_Tick(object sender, EventArgs e)//recibe ojbeto tipo sender { int count = 0; if (count < 5) { Servicio allMovi = new Servicio(); VerMovimientos mov = new VerMovimientos(); JavaScriptSerializer serm = new JavaScriptSerializer(); string cXg = serm.Serialize(mov); string resG = allMovi.llamarServicio(cXg); var dato = serm.Deserialize <List <allMov> >(resG); dgvMovimientos.DataSource = null; dgvMovimientos.DataSource = dato; } else { count = 0; } }