我的“选择”出了什么问题?代码? (VB)
我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在尝试编写
Label2.Text.Substring(0,1)
。You're trying to write
Label2.Text.Substring(0,1)
.