Larry Bradley wrote:
> Thanks, Paul. But what syntax do I use for the "except" statement?

Your syntax was correct, but the problem was that biz.requery() wasn't 
the place that raised dException.NoRecordsException, so it wasn't caught 
in that try block.

This is more like what you want, I think:

biz.requery()

try:
        biz.Record.<field_name> = 5
except dabo.dException.NoRecordsException:
        dabo.ui.exclaim(...)

-- 
pkm ~ http://paulmcnett.com


_______________________________________________
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/dabo-users/[EMAIL PROTECTED]

Reply via email to