Private Sub Text1_Change()
If IsNumeric(Text1) Then
Text4.Text = Val(Text1.Text) + Val(Text2.Text) + Val(Text3.Text)
End If
End Sub
Private Sub Text2_Change()
If IsNumeric(Text2) Then
Text4.Text = Val(Text1.Text) + Val(Text2.Text) + Val(Text3.Text)
End If
End Sub
Private Sub Text3_Change()
If IsNumeric(Text3) Then
Text4.Text = Val(Text1.Text) + Val(Text2.Text) + Val(Text3.Text)
End If
End Sub
Private Sub Text1_Change()
Text4.Text = Val(Text1.Text) + Val(Text2.Text) + Val(Text3.Text)
End Sub
Private Sub Text2_Change()
Text4.Text = Val(Text1.Text) + Val(Text2.Text) + Val(Text3.Text)
End Sub
Private Sub Text3_Change()
Text4.Text = Val(Text1.Text) + Val(Text2.Text) + Val(Text3.Text)
End Sub