barabass
03-19-2010, 07:08 PM
Hello everybody!
I'm new to Python wx and I'm building an application which requires the use of database content.
Now, I've made the database and the input data frame.
I need to make another frame where to list the content and I don't know how to make that.
I just need to dynamically create label fields and each row should have an edit button like
self.user1=wx.StaticText(....)
self.user2=wx.StaticText(...)
(...)
self.usern=wx.StaticText(...)
It would be even better to use a notebook for the paging (Page 1, Page 2, ... , Page n).
I have no idea how to make that.
It is possible to use exec? Should I use an Array?
Thanx for your time and answers!
I'm new to Python wx and I'm building an application which requires the use of database content.
Now, I've made the database and the input data frame.
I need to make another frame where to list the content and I don't know how to make that.
I just need to dynamically create label fields and each row should have an edit button like
self.user1=wx.StaticText(....)
self.user2=wx.StaticText(...)
(...)
self.usern=wx.StaticText(...)
It would be even better to use a notebook for the paging (Page 1, Page 2, ... , Page n).
I have no idea how to make that.
It is possible to use exec? Should I use an Array?
Thanx for your time and answers!