уже несколько дней я ищу решение, но всегда получаю почти код моей проблемы. Я хочу создать несколько кнопок в Outlook через VisualStudio. Эти кнопки должны выполнять одну и ту же подпрограмму. Но когда я создаю кнопки с показанным кодом, только последняя созданная кнопка обрабатывает событие щелчка.
Я использую VisualStudio (15.0) и Outlook (16.0, 32 бит)
Многие спасибо за вашу помощь
Holger
Public Class ThisAddIn
Dim ButtonControl As Office.CommandBarButton
Dim menuBar As Office.CommandBar
Dim newMenuBar As Office.CommandBarPopup
Private Sub ThisAddIn_Startup() Handles Me.Startup
Dim i As Integer
menuBar = Me.Application.ActiveExplorer().CommandBars.ActiveMenuBar
newMenuBar = menuBar.Controls.Add(Office.MsoControlType.msoControlPopup, Temporary:=True)
If newMenuBar IsNot Nothing Then
newMenuBar.Caption = "Mailverschiebung"
For i = 0 To 3
ButtonControl = newMenuBar.Controls.Add
ButtonControl.Caption = "zeichen" & i
ButtonControl.Tag = "zeichen" & i
AddHandler ButtonControl.Click, AddressOf ButtonControl_Click
Next
End If
End Sub
Sub ButtonControl_Click()
MsgBox("Läuft")
End Sub
Private Sub ThisAddIn_Shutdown() Handles Me.Shutdown
End Sub
End Class