i have a problem about textbox. I want to automatic
display when i write some words at textbox1 and also i
have a answer in textbox2.
The code I wrote to create is
Private Sub TextBox1_KeyPress(ByVal KeyAscii As
MSForms.ReturnInteger)
If TextBox1 = " ASK " Then
TextBox2.Value = " True "
Else
TextBox2.Value = " false "
End If
End Sub
Any help would be appreciated.