[PIPython] se possibile un aiuto
blink_twilight
damnit182
Sab 1 Gen 2005 17:43:35 CET
ciao Beppe. Sbagli qui:
[code] if a == 'pepe': [/code]
ti conviene sostituire questo:
[code]
wxTextCtrl(dlg, id1, a, wxPoint(5,10), style=wxTE_PASSWORD,
size=(213,20))
[/code]
con questo:
[code]
self.pwd = wxTextCtrl(dlg, id1, a, wxPoint(5,10), style=wxTE_PASSWORD,
size=(213,20))
[/code]
e poi questo:
[code]
if a == 'pepe':
[/code]
con questo:
[code]
if self.pwd.GetValue() == 'pepe':
[/code]
ciao ;)
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.296 / Virus Database: 265.6.5 - Release Date: 26/12/2004
More information about the Python
mailing list