I am using Access 2010. I Have the 'Display Status Bar' box ticked in Application Options but the Status Bar is not being displayed. Any suggestions please?
Not sure about this one. Did you try UnChecking it compiling and then ReChecking it?
Otherwise you can set it via code:
Sub ShowHideStatusBar()
If CommandBars("Status Bar").Visible = False Then
CommandBars("Status Bar").Visible = True
ElseIf CommandBars("Status Bar").Visible = True Then
CommandBars("Status Bar").Visible = False
End If