'change textbox backcolour based on another textbox value

I'm trying to make TextBox3.Backcolor = TextBox2.BackColor using below code, however it fail.TextBox1 value is not fixed.Please help me

 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

    TextBox1.Text = 3
    TextBox(TextBox1.Text).Backcolor = TextBox2.BackColor

End Sub


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source