I have followed the instructions in post http://www.access-programmers.co.uk/forums/showthread.php?t=100810&highlight=menubar
In the onOpen evet in my splash screen I have place
And on the onOpen event in my report I have placed
Where print is the name of my custom toolbar. However the custom toolbar never shows up. Any ideas
In the onOpen evet in my splash screen I have place
Code:
Dim i As Integer
For i = 1 To CommandBars.Count
CommandBars(i).Enabled = True
Next i
And on the onOpen event in my report I have placed
Code:
DoCmd.ShowToolbar "Print", acToolbarYes
Where print is the name of my custom toolbar. However the custom toolbar never shows up. Any ideas