chuckchuckit
Well-known Member
- Joined
- Sep 18, 2010
- Messages
- 541
Code below does not append 2nd copied character. I need it to append to StringTwo, instead of overwriting.
I will be doing other things to StringTwo inbetween each character like adding an other character or space. And is the reason I need to know how to "append" one character at a time.
Thanks.
Chuck
Code:
Dim StringOne, StringTwo
StringOne = "Word"
StringTwo = Mid(StringOne, 1, 1) 'This copies the 1st character OK
StringTwo = Mid(StringOne, 2, 1) 'This copies the 2nd character OK
Thanks.
Chuck