Avec la macro ci-dessous, vous pouvez afficher une barre de commande centrée sur l’écran, à la fois horizontalement et verticalement.

La macro montre également comment vous pouvez obtenir la taille de l’écran à l’aide de la fonction GetSystemMetrics32.

Declare Function GetSystemMetrics32 Lib "User32" _

Alias "GetSystemMetrics" (ByVal nIndex As Long) As Long

Sub CenterCommandBar()

Dim w As Long, h As Long

w = GetSystemMetrics32(0) ' screenwidth in points

h = GetSystemMetrics32(1) ' screenheight in points

With CommandBars("MyCommandBarName")

.Position = msoBarFloating

.Left = w / 2 - .Width / 2

.Top = h / 2 - .Height / 2

End With

End Sub