Knowledge.ToString()

Change MS Access Application Title and Icon Using VBA

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().

Share

Comments

12 responses to “Change MS Access Application Title and Icon Using VBA”

Leave a Reply

Your email address will not be published. Required fields are marked *