vb点击text弹出数字键盘有删除键,确定键单击确定键输入的数写到text中
展开全部
form1中文本框单击事件
Private Sub Text1_Click()
Form2.Left = Me.Left
Form2.Top = Me.Top + Me.Height
Form2.Show
End Sub
form2 建立一个按钮的控件数组
Private Sub Command1_Click(Index As Integer)
If (Index <> 9) And (Index <> 10) Then
Label1.Caption = Label1.Caption & Command1(Index).Caption
Else
If Index = 9 Then
Label1.Caption = Left(Label1.Caption, Len(Label1.Caption) - 1)
Else
Form1.Text1.Text = Label1.Caption
End If
End If
End Sub
更多追问追答
追问
9是退格,10是确定是吗? 这个程序10个数都能输入吗?
追答
当然可以啦
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询