Changing Title Icon (1 Viewer)

skydiver4

New member
Local time
Today, 06:28
Joined
Aug 9, 2012
Messages
7
I recently installed Office 2021 64-bit and can not change the title icon. I don't have any issues changing the title or using the icon on forms and reports. I have used the GUI to select the icon (.ico and .bmp), but neither works. I found some code to be called when the login form opens, and I noticed a flicker of the container title icon changing, but it reverts to the Access branding icon. I am hoping someone has experienced this and might have a workaround.

I am using the following VBA code:

cmdAddProp 'on login Form_Load

'Global module
Public Sub cmdAddProp()
Dim intX As Integer
Const DB_Text As Long = 10
intX = AddAppProperty("AppTitle", DB_Text, "Equipment Scanning")
intX = AddAppProperty("AppIcon", DB_Text, "C:\Temp\Equipment Scanning\Images\Gear-01-WF.ico")
CurrentDb.Properties("UseAppIconForFrmRpt") = 1
Application.RefreshTitleBar
End Sub

Function AddAppProperty(strName As String, varType As Variant, varValue As Variant) As Integer
Dim dbs As Object, prp As Variant
Const conPropNotFoundError = 3270

Set dbs = CurrentDb
On Error GoTo AddProp_Err
dbs.Properties(strName) = varValue
AddAppProperty = True

AddProp_Bye:
Exit Function

AddProp_Err:
If Err = conPropNotFoundError Then
Set prp = dbs.CreateProperty(strName, varType, varValue)
dbs.Properties.Append prp
Resume
Else
AddAppProperty = False
Resume AddProp_Bye
End If
End Function

Thanks in advance.
 

isladogs

MVP / VIP
Local time
Today, 14:28
Joined
Jan 14, 2017
Messages
18,226
Does it work if you do this through Access options?
 

skydiver4

New member
Local time
Today, 06:28
Joined
Aug 9, 2012
Messages
7
Unfortunately, it does not work. I believe it used to when I had 2019 32-bit installed.
 

isladogs

MVP / VIP
Local time
Today, 14:28
Joined
Jan 14, 2017
Messages
18,226
It still works for me. In fact I've just done this in A365
 

skydiver4

New member
Local time
Today, 06:28
Joined
Aug 9, 2012
Messages
7
I stopped using all VBA code and changed it through Access options.
 

Attachments

  • appTitle1.png
    appTitle1.png
    117.7 KB · Views: 76
  • appTitle2.png
    appTitle2.png
    136.6 KB · Views: 74

isladogs

MVP / VIP
Local time
Today, 14:28
Joined
Jan 14, 2017
Messages
18,226
Unfortunately, in the latest versions of Access, the Access icon in the top left corner is built-in and AFAIK cannot be changed.
It could be altered in e.g Access 2010
1693037663599.png


... but that doesn't work in A365 nor presumably A2021

What you can still do is remove the entire Access application interface or remove the title bar completely

1693038023676.png


See my example apps at:

 

isladogs

MVP / VIP
Local time
Today, 14:28
Joined
Jan 14, 2017
Messages
18,226
You're welcome. Sorry that you didn't get the answer you wanted.
 

skydiver4

New member
Local time
Today, 06:28
Joined
Aug 9, 2012
Messages
7
That’s okay! There are workarounds and options. I am just surprised they changed that. Thanks.
 

Users who are viewing this thread

Top Bottom