quello che voglio fare io e dividere la textbox2 per 100 e moltiplicare il risultato per textbox1 e vedere tutto il risultato nella textbox3 ho pravato cos'ì:

codice:
Public Class Form1
    Dim x As Long
    Dim y As Double
    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
        x = TextBox2.Text \ 100
        y = x * TextBox1.Text
        TextBox3.Text = y
    End Sub
End Class