ccdubs Posted July 9, 2011 Posted July 9, 2011 I'm sure the answer will be easy, but I want to make a string for an email address. At the moment I have: strEmailAddress = MyVar + "@testemail.com" I can't get the @ to show up in strEmailAddress.
AzeoTech Posted July 11, 2011 Posted July 11, 2011 @ is a reserved symbol when it is the first symbol in a string. It is used for multi-lingual apps. Please see section 7.12 in the user's guide for more info. If you want a string to start with @ but not use it for multilingual, simply put two @@ signs and the first will be stripped by the language parser.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.