i have this code in my prog.:
dim text as string
text = text1.text
text1.text = "hello"
text2.text = text
if i change the contents of text1, via a text box, text2 stays still says hello. why? and how can i update this? i heard something about using a forms change event...
dim text as string
text = text1.text
text1.text = "hello"
text2.text = text
if i change the contents of text1, via a text box, text2 stays still says hello. why? and how can i update this? i heard something about using a forms change event...