Ed, I downloaded and installed the nightly tarball, and the drop down list is now working.
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] And that change got the drop down working. Can I use the app that I generated from the old version of the wizard, or should I wipe the app and start over? Thanks, Rick _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
