[Anygui-users] Help with TextField
Brought to you by:
mlh
|
From: <fa...@hu...> - 2003-12-17 02:34:24
|
I made a Program with a textfield and some things with them.
from anygui import *
app = Application()
win = Window(title='kioii')
win.size = 107, 31
app.add(win)
box = TextField(height='25', width='100')
win.add(box, right=3, top=3, bottom=3, left=3)
def com(**kwds):
if box == 'qwqq':
import os
os.system('C://"Program Files"//"Internet Explorer"//IEXPLORE.EXE')
link(box, com)
app.run()
Concerned about your privacy? Follow this link to get
FREE encrypted email: https://www.hushmail.com/?l=2
Free, ultra-private instant messaging with Hush Messenger
https://www.hushmail.com/services.php?subloc=messenger&l=434
Promote security and make money with the Hushmail Affiliate Program:
https://www.hushmail.com/about.php?subloc=affiliate&l=427
|