A
Al Camp
I have a report where the default menubar is the Access default report
menubar.
I built a custom menubar that only has a Close button on it, and no Print
buttons. (NoReportPrint)
On the OnOpen for the report...
Private Sub Report_Open(Cancel As Integer)
If Forms!frmLoomTicketDialog!cmdLoomSetupTickets.Caption = "Preview
Ticket" Then
Me.MenuBar = "NoReportPrint"
Else
Me.MenuBar = ""
End If
End Sub
Works great for me, and according to a criteria shows the NoPrint menu, or
the regular menu properly
When I send that report to my user, they get a "Can't find object
NoReportPrint." when opening.
How can I send that custom menu to the user, so the report will be able to
find it?
Where are custom menus kept/stored?
Thanks
Al
menubar.
I built a custom menubar that only has a Close button on it, and no Print
buttons. (NoReportPrint)
On the OnOpen for the report...
Private Sub Report_Open(Cancel As Integer)
If Forms!frmLoomTicketDialog!cmdLoomSetupTickets.Caption = "Preview
Ticket" Then
Me.MenuBar = "NoReportPrint"
Else
Me.MenuBar = ""
End If
End Sub
Works great for me, and according to a criteria shows the NoPrint menu, or
the regular menu properly
When I send that report to my user, they get a "Can't find object
NoReportPrint." when opening.
How can I send that custom menu to the user, so the report will be able to
find it?
Where are custom menus kept/stored?
Thanks
Al