On Oct 14, 2006, at 9:38 AM, Rick Graves wrote:

To get it working, I had to put the column names in
quotes in the code I got from the wiki,

http://dabodev.com/wiki/HowToPopulateAndUseListControls

These lines:

  names = [rec[typename] for rec in ds]
  keys = [rec[pk] for rec in ds]

should be:

  names = [rec['typename'] for rec in ds]
  keys = [rec['pk'] for rec in ds]

        Good catch. I've updated the wiki.

Can I use the app that I generated from the old
version of the wizard, or should I wipe the app and
start over?

I guess it depends on how old the old version was, and how much customization you've made to it.


-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com



_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users

Reply via email to