Stuart McLachlan
stuart at lexacorp.com.pg
Mon May 19 18:14:02 CDT 2014
Generally, database properties in Access do not exist until they are set for the first time. Set it either with the Options - Current Database (or whatever it was in 2003 or in VBA with something like: Dim db As DAO.Database, prp As DAO.Property Set db = CurrentDb db.Properties(strPropName) = varPropValue SetProperties = True Set db = Nothing -- Stuart On 19 May 2014 at 16:01, Rocky Smolin wrote: > Dear List: > > I had a 2003 mdb with a problem - not important what it was - had to > do with odd mouse behavior in design view. > > Anyway, I imported all the objects into a blank mdb and everything > works better except: > > lblVersion.Caption = "Version " & > Right(CurrentDb.Properties("AppTitle"), _ > Len(CurrentDb.Properties("AppTitle")) - 46) > > works perfectly in the previous version and all versions of this app > going back to day 1. > > In this new one it throws the error 3270 - Property Not Found. > > Checked the references - identical between the two mdbs. > > Any idea what to look for next? > > MTIA > > Rocky > > -- > AccessD mailing list > AccessD at databaseadvisors.com > http://databaseadvisors.com/mailman/listinfo/accessd > Website: http://www.databaseadvisors.com >