投稿者 kojiro  (社会人) 投稿日時 2020/3/28 11:01:58
解決しました。実はTabControlの中にボタンを配置し、右クリック時の座標から、右クリック時の動作設定しようと思っていました」。ボタンの上では、座標は表示されないようです。ボタンの右クリック時は、以下でできるようです。
 Private Sub Button1_MouseDown(sender As Object, e As MouseEventArgs) Handles Button1.MouseDown
        If e.Button.HasFlag(MouseButtons.Right) Then
            '開始点の取得
            sPos = e
            Dim k As Integer = TabControl1.SelectedIndex
            Dim i As Integer = sPos.X
            Dim j As Integer = sPos.Y
            MsgBox(k)
            MsgBox(i)
            MsgBox(j)
        End If
    End Sub