VB6中如何循环到上一个控件?

发布于 2025-01-08 01:44:21 字数 202 浏览 1 评论 0原文

所以我的 VB 表单上有一堆列表框。我也创建了一个命令按钮。

我想要做到这一点,以便如果我按下命令按钮,它就会从具有焦点的当前列表框循环到上一个列表框。这相当于使用 TAB 和 SHIFT TAB 在控件之间循环。 SHIFT TAB 在循环中向后移动,TAB 在循环中向前移动。我依稀记得有一种回去的方法&在“选项卡循环”中向前移动。

我该怎么做?

So I have a bunch of listboxes on my VB form. I created a command button too.

I want to make it so that if I press the command button it cycles from the current listbox, which has focus, to the previous listbox. It's the equivalent of using TAB and SHIFT TAB to cycle amongst the control. SHIFT TAB goes backwards in the cycle, TAB goes forward in the cycle. I vaguely remember there was a way to go back & forth in the "tab cycle".

How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜访吸血鬼 2025-01-15 01:44:21

你可以;

Private mCurrentListboxTabIndex As Integer

'wire up, simpler if you use a control array
Private Sub List1_GotFocus()
    mCurrentListboxTabIndex = List1.TabIndex
End Sub

Private Sub List2_GotFocus()
    mCurrentListboxTabIndex = List2.TabIndex
End Sub

Private Sub List3_GotFocus()
    mCurrentListboxTabIndex = List3.TabIndex
End Sub

Private Sub btnPrev_Click()
    FocusListBoxByTabIndex -1
End Sub

Private Sub btnNext_Click()
    FocusListBoxByTabIndex 1
End Sub

Private Sub FocusListBoxByTabIndex(offset As Long)
    Dim ctrl As VB.Control
    For Each ctrl In Me
        If TypeOf ctrl Is ListBox Then
            If ctrl.TabIndex = mCurrentListboxTabIndex + offset Then
                ctrl.SetFocus
                Exit Sub
            End If
        End If
    Next
End Sub

You can;

Private mCurrentListboxTabIndex As Integer

'wire up, simpler if you use a control array
Private Sub List1_GotFocus()
    mCurrentListboxTabIndex = List1.TabIndex
End Sub

Private Sub List2_GotFocus()
    mCurrentListboxTabIndex = List2.TabIndex
End Sub

Private Sub List3_GotFocus()
    mCurrentListboxTabIndex = List3.TabIndex
End Sub

Private Sub btnPrev_Click()
    FocusListBoxByTabIndex -1
End Sub

Private Sub btnNext_Click()
    FocusListBoxByTabIndex 1
End Sub

Private Sub FocusListBoxByTabIndex(offset As Long)
    Dim ctrl As VB.Control
    For Each ctrl In Me
        If TypeOf ctrl Is ListBox Then
            If ctrl.TabIndex = mCurrentListboxTabIndex + offset Then
                ctrl.SetFocus
                Exit Sub
            End If
        End If
    Next
End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文