Hey Guys and Gals,
Is there any way to deconcentate a numeric variable and a string literal.
This is what I'm Trying to do:
I'm taking the value of a textbox, turning it into a numeric variable and then displaying it in a label andconcentating a string literal via code
yearsOldInteger =
Integer.Parse(yearsOldTextBox.Text)
yearsOldLabel.Text = yearsOldInteger & " Years Old "
Now this works fine but I need to use the numeric value (before I added the string literal)of the yearsOldLabel.text
in another arithmetic function in the very next statement but I turned it into
a monster. Is there any way to (de)concentate the string from the
numeric value so I can use it in the next statement or would it just
be easier to use labels on the form to identify the output instead of
concentating the variable and the string literal.
Hope This Makes Sense!!!
Thanks.......Eric