Here is a code to change MS Access application title and icon using VBA. This code also sets the application icon as form and report default icon.
Dim db As Database
Set db = CurrentDb
db.Properties("AppIcon").Value = CurrentProject.Path & "\Bee.ico"
db.Properties("AppTitle").Value = msgMainTitle
db.Properties("UseAppIconForFrmRpt").Value = True
Application.RefreshTitleBar
Click here for list of all properties exposed by CurrentDB.Properties().
Leave a Reply