Jim078
September 22nd, 2001, 10:34 AM
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
|
Click to See Complete Forum and Search --> : Code Help Jim078 September 22nd, 2001, 10:34 AM 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 dar1 September 22nd, 2001, 11:43 AM Try lblFinal.caption = (txtword1.text) & (txtword2.text) codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |