Is it the buttons that you want some help with?
Can you post some simple exampel like the addition button perhaps?
Public Class Form1
Private Number1 As Decimal
Private Number2 As Decimal
Private FirstNumber As Boolean = True
Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click
If IsNumeric(txtInput.Text) Then
If FirstNumber Then
Number1 = txtInput.Text
txtInput.Text = ""
FirstNumber = False
txtInput.Focus()
Else
Number2 = txtInput.Text
txtInput.Text = ""
FirstNumber = True
btnResult.Focus()
End If
End If
End Sub
Private Sub btnResult_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnResult.Click
txtResult.Text = Number1 + Number2
End Sub
End Class
Kenneth