Created
December 19, 2008 07:58
-
-
Save billy3321/37915 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for user_name in USERS_LIST: | |
user_name_box= eval(user_name + "_box") | |
user_name_box=gtk.CheckButton(user_name) | |
dlg.vbox.pack_start(user_name_box,True,True,2) | |
dlg.vbox.show_all () | |
ret = dlg.run () | |
for user_name in USERS_LIST: | |
user_name_box= eval(user_name + "_box") | |
if user_name_box.get_active(): | |
print "yes",user_name | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for user_name in USERS_LIST:
user_name_box= eval(user_name + "_box")
user_name_box=gtk.CheckButton(user_name)
dlg.vbox.pack_start(user_name_box,True,True,2)