# Created by Leo from: C:\Development\Python22\Lib\site-packages\vb2py\vb2py.leo
"""The main form for the application"""
from PythonCardPrototype import model
class Background(model.Background):
def __getattr__(self, name):
"""If a name was not found then look for it in components"""
return getattr(self.components, name)
# CODE_GOES_HERE
if __name__ == '__main__':
app = model.PythonCardApp(MAINFORM)
app.MainLoop()
|