Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. self.grid_1.CreateGrid(r, 4)#this is to create the grid with same rows as database
  2. self.grid_1.SetColLabelValue(0, _("ID"))
  3. self.grid_1.SetColSize(0, 12)
  4. self.grid_1.SetColLabelValue(1, _("NAME"))
  5. self.grid_1.SetColSize(1, 150)
  6. self.grid_1.SetColLabelValue(2, _("SURNAME"))
  7. self.grid_1.SetColSize(2, 150)
  8. self.grid_1.SetColLabelValue(3, _("NUMBER"))
  9.  
  10. NAME Surname Number
  11. A V 55
  12. B C 45
  13.  
  14. ID NAME Surname Number
  15. 1 A V 55
  16. 2 B C 45
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement