On Jan 22, 2008 5:22 PM, fde <[EMAIL PROTECTED]> wrote:
>
>
> class frameB(frameA):
> blah=ciao
> self.textCtrlPinco.SetValue("blah")
>
ps: blah = ciao ti darĂ dei problemi
ho la sensazione che tu volessi fare qualcosa del tipo
class frameB(frameA):
def __init__(self):
frameA.__init__(self)
blah = "ciao"
self..... (blah)
Nota le virgolette intorno a "ciao" e non intorno a blah :-)
ciao,
Francesco
_______________________________________________
Python mailing list
[email protected]
http://lists.python.it/mailman/listinfo/python