On Jan 10, 2008 7:46 PM, Ed Leafe <[EMAIL PROTECTED]> wrote:
> On Jan 10, 2008, at 8:40 PM, Nate Lowrie wrote:
>
> > Oops.  I wasn't thinking properly when I wrote that.  No, it is an
> > actual dMaskedTextBox.  No grids involved.  I can see why you assumed
> > it was a grid.
>
>         Can you reduce the problem down to a simple demo? I just tried in on
> my Mac, and it worked as expected. You're using WinXP, right?

I am running it on Kubuntu.  I wrote up this little script:

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

class mainForm(dabo.ui.dForm):
        def afterInit(self):
                self.Sizer = dabo.ui.dSizer('v')
                self.panel = dabo.ui.dPanel(self)
                self.Sizer.append1x(self.panel)
                self.panel.Sizer = dabo.ui.dSizer('v')
                self.panel.Sizer.append(dabo.ui.dMaskedTextBox(self.panel, 
Format="phone-us"))
                
                
                self.layout()

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

It works.  However, my code is still broke.  The only difference is
that I am using a dOkCancelDialog instead of a dForm.


_______________________________________________
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/dabo-users/[EMAIL PROTECTED]

Reply via email to