On Wednesday 24 March 2010 04:40:46 am Fraser Burns wrote:
> UI Version: 2.8.8.0 on wxGTK (gtk2)
>
> > Try upgrading wxPython to 2.8.10.x
> >
> > The version has been available for a very long time and most are using
> > it.
> >
> > Johnf
> > ______________________________________
>
> I was forgetting that Ubuntu sometimes gets behind on its versions.
>
> So it now shows as:
> Platform: GTK
> Python Version: 2.5.2 on linux2
> Dabo Version: Version 0.9.2; Revision 5592
> UI Version: 2.8.10.1 on wxGTK (gtk2)
>
> The result is :
>                           NO CHANGE
> Hmmm
> Fraser

Of course do what Ed's has asked you to do.  But if you have a little time 
could you try adding a sizer.  Re-reading your comments I suddenly started 
wondering if your label went off screen.  So could you copy the code below 
and test.  All I did was add a sizer to force the location on the form for 
the label.

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

class HelloPyConForm(dabo.ui.dForm):
     def afterInit(self):
          self.Sizer = vs = dabo.ui.dSizer('v')
          self.lblHello = dabo.ui.dLabel(self,
               Caption="Hello PyCon", FontSize=24,
               ForeColor="blue")
          vs.append(self.lblHello,0,'x')

app = dabo.dApp()
app.MainFormClass = HelloPyConForm
app.start()

Johnf


_______________________________________________
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