我的“选择”出了什么问题?代码? (VB)

发布于 2024-12-22 19:06:47 字数 244 浏览 1 评论 0原文

我在VB中有以下代码:

If TextBox1.Text = (Label2.Select(0, 1) Then
            TextBox2.Focus()
        End If

但它不起作用:(

这就是我的代码应该做的:

  • 如果texbox1中的文本与标签2的第一个字母相同
  • 然后将光标移动到textbox2

I have the following code in VB:

If TextBox1.Text = (Label2.Select(0, 1) Then
            TextBox2.Focus()
        End If

But it doesnt't work :(

This is what my code is supposed to do:

  • If the text in texbox1 is the same as the first letter of label 2
  • Then move cursor to textbox2

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

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

发布评论

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

评论(1

可爱暴击 2024-12-29 19:06:47

您正在尝试编写 Label2.Text.Substring(0,1)

You're trying to write Label2.Text.Substring(0,1).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文