VB问题 怎么能使得焦点在哪个文本框,一点击按钮汉字就在哪个文本框里。
设置一个按钮,一点击点击这个按钮时就能出现汉字。设置二个文本框,怎么能使得焦点在哪个文本框,一点击按钮汉字就在哪个文本框里。...
设置一个按钮,一点击点击这个按钮时就能出现汉字。设置二个文本框,怎么能使得焦点在哪个文本框,一点击按钮汉字就在哪个文本框里。
展开
2个回答
展开全部
Dim Index As Integer '窗体级变量
Private Sub Form_Load()
Index = 0
End Sub
Private Sub Text1_GotFocus()
Index = 0
End Sub
Private Sub Text2_GotFocus()
Index = 1
End Sub
Private Sub Command1_Click()
If Index = 0 Then Text1.Text ="汉字" Else Text2.Text ="汉字"
End Sub
Text1.TabIndex 设定比 Text2.TabIndex 小 就行了
Private Sub Form_Load()
Index = 0
End Sub
Private Sub Text1_GotFocus()
Index = 0
End Sub
Private Sub Text2_GotFocus()
Index = 1
End Sub
Private Sub Command1_Click()
If Index = 0 Then Text1.Text ="汉字" Else Text2.Text ="汉字"
End Sub
Text1.TabIndex 设定比 Text2.TabIndex 小 就行了
展开全部
Dim Index As Byte
Private Sub Command1_Click()
If Index = 1 Then
Text1.Text = "选种文本框1"
Else
Text2.Text = "选种文本框2"
End If
End Sub
Private Sub Text1_Click()
Index = 1
End Sub
Private Sub Text2_Click()
Index = 2
End Sub
Private Sub Command1_Click()
If Index = 1 Then
Text1.Text = "选种文本框1"
Else
Text2.Text = "选种文本框2"
End If
End Sub
Private Sub Text1_Click()
Index = 1
End Sub
Private Sub Text2_Click()
Index = 2
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询