Hi there - using excel 2003.
I have the following code to display a toolbar everytime my template is open
'Show Custom Toolbar "Trade Log" on Workbook Open
On Error Resume Next
With Application.CommandBars("Trade Log")
.Position = msoBarFloating
.Left = 5000
.Top = 600
.Visible = True
End With
End Sub
(hope i wrapped the code quotes correctly this time
))))
I noticed that when you drag a custom toolbar to the far right of your screen - it locks in to a vertical toolbar space.
How can i position my toolbar in this place automatically by modifying the above code please?
I have the following code to display a toolbar everytime my template is open
'Show Custom Toolbar "Trade Log" on Workbook Open
On Error Resume Next
With Application.CommandBars("Trade Log")
.Position = msoBarFloating
.Left = 5000
.Top = 600
.Visible = True
End With
End Sub
(hope i wrapped the code quotes correctly this time
I noticed that when you drag a custom toolbar to the far right of your screen - it locks in to a vertical toolbar space.
How can i position my toolbar in this place automatically by modifying the above code please?