Antonio Dias wrote:
> Paul McNett <p <at> ulmcnett.com> writes:
>> It sounds like you need to say 'self.callb()' instead of just 'callb()'.
>  
> I have in A: 
> 
> (formA)
> def callb(self):
>    FormB = dabo.ui.createForm("b.cdxml")
>    FormB.show()
> 
> (button)
> def onHit(self, evt)
>    callb()  <---error here even if I put self.callb()

Ok, you are within your button, so you need:

(button)
dev onHit(self, evt):
        self.Form.callb()




_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users

Reply via email to