Sorry for the dumb question, but how do I create a string that pulls from three separate strings? I want the string to format so if TB1=AA, TB2=BB, TB3=CC, the string will be AA BB CC.
Using
I can get it to return the first textbox, however when I try to add them (doc = TB1.Value TB2.Value TB3.Value), it gives me "expected end of statement". How should this look? Sorry for the lame question, I feel like the answer is extremely easy.
Using
Code:
Dim doc As Stringdoc = TB1.Value
I can get it to return the first textbox, however when I try to add them (doc = TB1.Value TB2.Value TB3.Value), it gives me "expected end of statement". How should this look? Sorry for the lame question, I feel like the answer is extremely easy.