I tried your simple code example, but couldn't get it to display the 
text on the form until I changed it to afterInitAll()
It seemed so straightforward that I couldn't understand why we might 
have a timing issue at this level. Is it a typical situation with 
slightly older hardware or something?

import dabo
dabo.ui.loadUI("wx")

class HelloPyConForm(dabo.ui.dForm):
    def afterInit(self):
        self.Caption = "Hello PyCon Form"
        self.lblHello = dabo.ui.dLabel(self,
                Caption ="Hello PyCon", FontSize=24,
                ForeColor="blue")
                               
app = dabo.dApp()
app.MainFormClass = HelloPyConForm
app.start()



_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/[email protected]

Reply via email to