0

ここで Outlook アドインを作成します。ここで、1 つのメニュー バー項目を作成し、メニュー バーに 1 つのボタンを追加します。アプリケーションを実行すると、MyMenuBar() で「値が期待される範囲内にありません」という実行時エラーが発生します。 _objNewMenuBar を初期化するメソッド。なぜそのようなタイプまたはエラーが私に与えられるのか、誰でも私に提案できますか
? TROutlookAddOn.ThisAddIn.MyMenuBar()

Private Sub ThisAddIn_Startup(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Startup
    Me.MyMenuBar()
End Sub

Private Sub MyMenuBar()
    Me.ErsMyMenuBar()
    Try
        'Define the existent Menu Bar
        _objMenuBar = Me.Application.ActiveExplorer.CommandBars.ActiveMenuBar
        'Define the new Menu Bar into the old menu bar
        _objNewMenuBar = CType(_objMenuBar.Controls.Add(Office.MsoControlType.msoControlPopup, missing, missing, missing, False), Office.CommandBarPopup)
        If (Not (_objNewMenuBar) Is Nothing) Then
            _objNewMenuBar.Caption = "Talent Recruit"
            _objNewMenuBar.Tag = menuTag
            _objButton = CType(_objNewMenuBar.Controls.Add(Office.MsoControlType.msoControlButton, missing, missing, 1, True), Office.CommandBarButton)
            _objButton.Caption = "Import Resume"
            Dim newIcon As System.Drawing.Icon = My.Resources.recruit_logo
            Dim newImageList As ImageList = New ImageList
            newImageList.Images.Add(newIcon)
            _objButton.Picture = ConvertImage.Convert(newImageList.Images(0))
            _objButton.Style = Microsoft.Office.Core.MsoButtonStyle.msoButtonIconAndCaption
            'Icon 
            '_objButton.FaceId = 500;
            _objButton.Tag = "ItemTag"
            'EventHandler
            AddHandler _objButton.Click, AddressOf Me._objButton_Click
            _objNewMenuBar.Visible = True
        End If
    Catch ex As System.Exception
        System.Windows.Forms.MessageBox.Show(("Error: " + ex.Message.ToString), "Error Message")
    End Try
End Sub
4

1 に答える 1