I've been doing this a couple of days. What I wanted to do is when I hit enter. The number I input in txtbox1 will be multiplied by 12 and then show the output to txtbox2. But no luck. Can some one help me please? Here's my code:
Private Sub txt1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txt1.KeyDown
Dim a, b, c As Integer
txt1.Text = a
b=a*12
If e.KeyCode = Keys.Enter Then
txt2.text = b
End If
End Sub
