From: Alex T. <al...@tw...> - 2007-10-24 12:18:19
|
Alec Bennett wrote: > I'm guessing this isn't possible in Pythoncard, since calling, for > example: > > self.components.myradiogroup.items = ['choice1', 'choice2'] > > returns NotImplementedError. > > Is there some other way to set the radiogroup items dynamically? > Very embarrassingly, I can't try this out right now, but you might get it to work as self.components.myradiogroup.SetItemLabel(1,'choice1') self.components.myradiogroup.SetItemLabel(2,'choice2') etc. -- Alex Tweedly mailto:al...@tw... www.tweedly.net |