Pablo Neruda 14/2/2011, 18:18
Amigão o que vc me perguntou antes:
o Código:
Dim cmbRightClick As Office.CommandBar
Dim cmbControl As Office.CommandBarControl
' Create the shortcut menu.
Set cmbRightClick = CommandBars.Add("AtalhoRelatorio", msoBarPopup, False, True)
With cmbRightClick
' Add the Print command.
Set cmbControl = .Controls.Add(msoControlButton, 2521, , , True)
' Change the caption displayed for the control.
cmbControl.Caption = "Impressão Rápida"
' Add the Print command.
Set cmbControl = .Controls.Add(msoControlButton, 15948, , , True)
' Change the caption displayed for the control.
cmbControl.Caption = "Selecionar Impressora"
' Add the Page Setup... command.
Set cmbControl = .Controls.Add(msoControlButton, 247, , , True)
' Change the caption displayed for the control.
cmbControl.Caption = "Configurar Página"
' Add the Mail Recipient (as Attachment)... command.
Set cmbControl = .Controls.Add(msoControlButton, 2188, , , True)
' Start a new group.
cmbControl.BeginGroup = True
' Change the caption displayed for the control.
cmbControl.Caption = "Enviar como anexo no e-mail"
' Add the PDF or XPS command.
Set cmbControl = .Controls.Add(msoControlButton, 12499, , , True)
' Change the caption displayed for the control.
cmbControl.Caption = "Salvar como PDF/XPS"
' Add the Close command.
Set cmbControl = .Controls.Add(msoControlButton, 923, , , True)
' Start a new group.
cmbControl.BeginGroup = True
' Change the caption displayed for the control.
cmbControl.Caption = "Fechar Relatório"
End With
Set cmbControl = Nothing
Set cmbRightClick = Nothing
Faça a execução passar por ele, numa tela de Splash, na abertura de um formulário principal, numa função, basta o VB ler o código uma vez...
Ele esta setado para criar o menu chamado: AtalhoRelatorio
Na configuração do seu relatório, nas propriedades do mesmo, no item Barras de Menus de Atalho, coloque o nome do menu "AtalhoRelatorio"...
Como funciona:
Você ira colocar um botão para visualizar o relatório (eu coloco como pop up), quando vc abrir o relatório, clique com o botão direito do mouse que o menu será apresentado...
Comentário:
Achei que os usuário teriam problemas para assimilar a função, mas foi muito bem aceito, possibilitando a seleção da impressora e geração de PDF do relatório visualizado...
Bem espero que lhe ajude...
Sds,
Pablo