i want to use the keypress event and i am unsure of the correct method to use to do what i want to do.
its quite simple, i have a text box and a label , i want to use the keypress event to transfer the text from the text box to the label.
ive tried it by simply doing this:
lblCenter.Text = txtInput.Text;
but it seems to be one character behind with ever char i press.
any help would be appreciated.
its quite simple, i have a text box and a label , i want to use the keypress event to transfer the text from the text box to the label.
ive tried it by simply doing this:
lblCenter.Text = txtInput.Text;
but it seems to be one character behind with ever char i press.
any help would be appreciated.