From: Bill B. <bil...@pe...> - 2006-02-18 11:57:26
|
> <code> > class GUI(model.Background): > def on_initialize(self, event): > self.fileList = self.components.fileList > dropTarget = FileDropTarget(self.fileList) > self.fileList.SetDropTarget(dropTarget) > </code> > Oops - The above didn't come out correctly. The code (properly indented looks like this: <code> class GUI(model.Background): def on_initialize(self, event): self.fileList = self.components.fileList dropTarget = FileDropTarget(self.fileList) self.fileList.SetDropTarget(dropTarget) </code> Bill |