I need to write a code that concatenates the contents of two TextBox controls named txtWord1 and txtWord2 to be displayed in a Label control with a name of lblFinal Thanks
Printable View
I need to write a code that concatenates the contents of two TextBox controls named txtWord1 and txtWord2 to be displayed in a Label control with a name of lblFinal Thanks
Try lblFinal.caption = (txtword1.text) & (txtword2.text)