Can the “AppTitle” property be reset to Nothing using VBA?
Sample code that won’t work:
Function SetandClearAppTitle()
Dim Dbs As Object
Set Dbs = CurrentDb.Properties
Dbs(“AppTitle”).Value = “MyApplication”
Debug.Print Dbs(“AppTitle”).Value
Dbs(“AppTitle”).Value = Nothing ‘ *** Has no effect
Debug.Print Dbs(“AppTitle”).Value
End Function
Thanks