Private Sub TextBox2_TextChanged(ByVal sender As Object, ByVal e As EventArgs) Handles Textbox2.TextChanged
Try
If Not String.IsNullOrEmpty(Textbox1.Text) Then
If Textbox2.Text.Length > 0 Then
TextBox3.Text = Cint(Textbox1.Text) + Cint(Textbox2.Text)
Else
TextBox3.Text = String.Empty
End If
End If
Catch
End Try
End Sub
Personally, I would use a label in-place of textbox3, they won't need to edit this, it just holds the result.