Philipp

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: SmartSet organizer – feedback? #5611

    Philipp
    Participant

    Hi Jack,

    thanks for your detailed answer! I will try to integrate your recommendation and report back next week. :-)

    in reply to: Create checkboxes with loop? #5582

    Philipp
    Participant

    Boing!

    My mistake was a typo: It´s CheckBox, not Checkbox … Ah, the joys of programming!

    Thanks for your help! :-)

    in reply to: Create checkboxes with loop? #5580

    Philipp
    Participant

    joanca, frederik, thanks for your fast answers!

    joancas suggestion works. Though I read often that

    exec()

    might be dangerous to use. Unfortunately I get an NameError with frederiks variant:

    NameError: global name 'Checkbox' is not defined

    This is my current code:

    from vanilla import *
    
    class setOrganizer():
    
        def __init__(self):
            self.w = Window((400,400), 'checkBoxWindow')
            
            for i in range(10):
                checkboxObject = Checkbox((10, 10, 10+30*i, 22), "label %s" % i)
                setattr(self.w, "checkBox_%s" % i, checkboxObject)
    
            self.w.open()
            
    setOrganizer()
    
Viewing 3 posts - 1 through 3 (of 3 total)