Hello everybody,
I'm new to Python wx and I'm trying to make an application which requires the use of database content.
I've already made the input data frame.
I need to make a frame where to list the database content.
I need to create a label for each row like
self.user1=wx.StaticText(....)
self.user2=wx.StaticText(...)
(...)
self.usern=wx.StaticText(...)
It should be even better to use a notebook for the paging (Page 1, Page 2, ..., Page n).
I have no idea how to do it so please help me with it.
Thanx a lot for your time and answers.