B
Brian
I am using a custom DB property to control an expiration date of a demo
version of an Access app. In order to avoid errors, though, I must first
check to see if the property exists (before I attempt to set its value).
Currently, I am enumerating the entire properties collection by looping
through numerically to see if any ...<Property#>.Name matches the name of the
property. Would it be better to do this: If IsNull
(CurrentDB.Properties("ABC").Name) Then...
Is there any simpler/better way to just check to see if it exists?
version of an Access app. In order to avoid errors, though, I must first
check to see if the property exists (before I attempt to set its value).
Currently, I am enumerating the entire properties collection by looping
through numerically to see if any ...<Property#>.Name matches the name of the
property. Would it be better to do this: If IsNull
(CurrentDB.Properties("ABC").Name) Then...
Is there any simpler/better way to just check to see if it exists?