Vb中如何把一个textbox输入的数字不断相加到另一个textbox中?
2014-02-16
展开全部
Option Explicit
Private Sub Form_Load()
Text1.Text = ""
Text2.Text = ""
End Sub
Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
Dim Mark As Boolean
If KeyCode = vbKeyReturn Then
If Right(Text2.Text, 1) <> "+" Or Right(Text2.Text, 1) <> "-" Then
If Len(Text2.Text) = 0 Then
Text2.Text = Text2.Text & Val(Text1.Text)
Else
If Val(Text1.Text) >= 0 Then
Text2.Text = Text2.Text & "+" & Val(Text1.Text)
Else
Text2.Text = Text2.Text & Val(Text1.Text)
End If
End If
End If
Text1.Text = ""
End If
End Sub
Private Sub Form_Load()
Text1.Text = ""
Text2.Text = ""
End Sub
Private Sub Text1_KeyDown(KeyCode As Integer, Shift As Integer)
Dim Mark As Boolean
If KeyCode = vbKeyReturn Then
If Right(Text2.Text, 1) <> "+" Or Right(Text2.Text, 1) <> "-" Then
If Len(Text2.Text) = 0 Then
Text2.Text = Text2.Text & Val(Text1.Text)
Else
If Val(Text1.Text) >= 0 Then
Text2.Text = Text2.Text & "+" & Val(Text1.Text)
Else
Text2.Text = Text2.Text & Val(Text1.Text)
End If
End If
End If
Text1.Text = ""
End If
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
大雅新科技有限公司
2024-11-19 广告
2024-11-19 广告
这方面更多更全面的信息其实可以找下大雅新。深圳市大雅新科技有限公司从事KVM延长器,DVI延长器,USB延长器,键盘鼠标延长器,双绞线视频传输器,VGA视频双绞线传输器,VGA延长器,VGA视频延长器,DVI KVM 切换器等,优质供应商,...
点击进入详情页
本回答由大雅新科技有限公司提供
2014-02-16
展开全部
text3=text1+text2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询