Ok, so I'm giving it a try.
Installed everything. then went to
http://wiki.dabodev.com/StepByStepGuide
and to
http://docs.google.com/View?docid=dg79jzmg_3x78zkp
(that's "The Step-By-Step Guide to Dabo Programming")
and tried the following :

PyCrust 0.9.5 - The Flakiest Python Shell
Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import dabo
... dabo.ui.loadUI("wx")
>>> app = dabo.dApp()
>>> form = dabo.ui.dForm(app.MainForm, Caption='Hello, Dabo Users'
...     )
Traceback (most recent call last):
  File "<input>", line 1, in <module>
AttributeError: 'module' object has no attribute 'dForm'
>>> app.MainFormClass = dabo.ui.dFormMain
Traceback (most recent call last):
  File "<input>", line 1, in <module>
AttributeError: 'module' object has no attribute 'dFormMain'
>>> dabo.version
{'file_revision': '4111', 'version': '0.8.4', 'revision': '~4111'}
>>>

Then tried PyalaMode and

Py 0.9.5
Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import dabo
>>> dabo.ui.loadUI('wx')
True
>>> app = dabo.dApp()
>>> app.setup()
Dabo Info Log: Sat Oct 25 16:39:47 2008: 0 database connection
definition(s) loaded.
Dabo Info Log: Sat Oct 25 16:39:47 2008: User interface already set to
'wx', so dApp didn't touch it.
Traceback (most recent call last):
  File "<input>", line 1, in <module>
  File "E:\Dabo\dabo\dApp.py", line 277, in setup
    self.initUIApp()
  File "E:\Dabo\dabo\dApp.py", line 304, in initUIApp
    self.uiApp.setup()
AttributeError: 'App' object has no attribute 'setup'
>>> app.setup()
Dabo Info Log: Sat Oct 25 16:39:55 2008: 0 database connection
definition(s) loaded.
Dabo Info Log: Sat Oct 25 16:39:55 2008: User interface already set to
'wx', so dApp didn't touch it.
Traceback (most recent call last):
  File "<input>", line 1, in <module>
  File "E:\Dabo\dabo\dApp.py", line 277, in setup
    self.initUIApp()
  File "E:\Dabo\dabo\dApp.py", line 304, in initUIApp
    self.uiApp.setup()
AttributeError: 'App' object has no attribute 'setup'
>>> app.setup(initUI=True)
Dabo Info Log: Sat Oct 25 16:40:11 2008: 0 database connection
definition(s) loaded.
Dabo Info Log: Sat Oct 25 16:40:11 2008: User interface already set to
'wx', so dApp didn't touch it.
Traceback (most recent call last):
  File "<input>", line 1, in <module>
  File "E:\Dabo\dabo\dApp.py", line 277, in setup
    self.initUIApp()
  File "E:\Dabo\dabo\dApp.py", line 304, in initUIApp
    self.uiApp.setup()
AttributeError: 'App' object has no attribute 'setup'
>>> dabo.version
{'file_revision': '4111', 'version': '0.8.4', 'revision': '~4111'}
>>>

PyCrust 0.9.5 - The Flakiest Python Shell
Python 2.5.2 (r252:60911, Feb 21 2008, 13:11:45) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
import wx
wx.version
<function version at 0x01373730>
wx.version()
'2.8.7.1 (msw-unicode)'


What am I doing wrong?

TIA


_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]

Reply via email to