I want to write the code that if you write something particular in TEXTBOX1, then a certain text appears in TEXTBOX2, and i cant understand why its not letting me, what did i do wrong? someone can give me a fixed text?
Code:
Public Class Form1
Private Sub TextBox1_Change()
If TextBox1 = Text "dad" Then TextBox2 = Text "bib"
End If
End Class