14 Dec
2001
14 Dec
'01
8:15 p.m.
Tim Lynch writes:
But, when I try to change the Title property with:
self.resources[recordID].propertysheets['Basic'].manage_changeProperties(Title = t)
I get TypeError -- sequence index must be integer This probably comes from "propertysheets['Basic']".
Try the attribute access syntax: "propertysheets.Basic". But, do you have a propertysheet named "Basic" ?. If not, you will get an "AttributeError". Dieter