'Copy this into a public module
Private Declare Function SetWindowText Lib "user32" Alias "SetWindowTextA" (ByVal hwnd As Long, ByVal lpString As String) As Long
Public Sub SetFormTitle(frm As Form, TitleText As String)
Dim fhWnd As Long
fhWnd = frm.hwnd
SetWindowText fhWnd, TitleText
End Sub
Public Sub SetAppTitle(TitleText As String)
SetWindowText Application.hWndAccessApp, TitleText
End Sub
'Copy this into the the forms OnOpen event
Private Sub Form_Open(Cancel As Integer)
SetFormTitle Me, ""
SetAppTitle "My Application Title Here"
End Sub
Courtesy of Larry Steele