Advertisement
jsbsan

cargardatosgrid

Oct 10th, 2014
3,055
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GAMBAS 0.29 KB | None | 0 0
  1.  
  2. Public Sub rellenagridview(id As String, nombre As String, pais As String, punto As String)
  3.  
  4.   GridView1.rows.count += 1
  5.  
  6.   GridView1[GridView1.rows.count - 1, 0].text = nombre
  7.   GridView1[GridView1.rows.count - 1, 1].text = pais
  8.   GridView1[GridView1.rows.count - 1, 2].text = punto
  9.  
  10. End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement