art of the ObjectListView library.
Python dot net is really a great software.
On Fri, May 24, 2013 at 12:07 PM, Jojo Maquiling
wrote:
> Actually i'm just trying to use a .net System.Object List with this one -
> http://objectlistview.sourceforge.net/cs/index.html. I like the way the
> g
of my code.
def LoadRecord(self,sender,e):
listing = List[person]()
listing.Add(person('jojo','maquiling'))
listing.Add(person('gary','granada'))
self._objectListView1.SetObjects(listing)
A datagrid is good,I have used it, but then i just want to
Here is the issue that i need to address:
*
*
*# My declaration is just fine here *
>>> class person(System.Object):
def __init__(self,fname,lname):
self.Firstname = fname
self.Lastname = lname
*# adding a value also goes fine. *
>>> j = person('jojo','maquilin