Exibir um CommandBar centralizado na tela usando VBA no Microsoft Excel

Anonim

Com a macro abaixo, você pode exibir um CommandBar centralizado na tela, tanto horizontal quanto verticalmente.
A macro também mostra como você pode obter o tamanho da tela usando a função 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 em pontos Com CommandBars ("MyCommandBarName") .Position = msoBarFloating .Left = w / 2 - .Width / 2 .Top = h / 2 - .Height / 2 End With End Sub