[dabo-users] BasePrefKey

2010-10-14 Thread Henning Hraban Ramm
Consider this snippet: app = dabo.dApp() app.BasePrefKey = 'myapp' app.MainFormClass = mainTest app.start() At start the app warns (four times!) that there wasn't a BasePrefKey set and constructs one from the file's path. That would be fine if I hadn't set BasePrefKey

Re: [dabo-users] BasePrefKey

2010-10-14 Thread Ed Leafe
On Oct 14, 2010, at 4:51 AM, Henning Hraban Ramm wrote: Consider this snippet: app = dabo.dApp() app.BasePrefKey = 'myapp' app.MainFormClass = mainTest app.start() At start the app warns (four times!) that there wasn't a BasePrefKey set and constructs one from the

Re: [dabo-users] BasePrefKey

2010-10-14 Thread Henning Hraban Ramm
Am 2010-10-14 um 14:33 schrieb Ed Leafe: It would be easier to simply pass it when you instantiate the app, then: app = dabo.dApp(BasePrefKey='myapp') Ah, good idea! Didn't think of that. Works great, so that's my way to go. Thank you! Greetlings from Lake Constance! Hraban ---