On Dec 13, 2006, at 08:00 UTC, Todd Geist wrote: > I need to store a string that has some nasty characters in it. I have > tried to put them in a property but they cause the compiler to choke. > I also tried just to put them in a function, but that is not working > either.
OK, first let's be clear on the terminology: there is no such thing as "high ASCII," and I bet the bytes you're referring to are not characters at all. If they really were characters, RB would handle them just fine (both property values and source code are stored in Unicode). So, I think what you mean is that you have some binary data that is not text at all. This you should put into a file, and then drag this file into your project. It will appear as a project item, and get compiled as a string constant with undefined encoding -- which is quite right in this case, since the string data isn't text. Best, - Joe -- Joe Strout -- [EMAIL PROTECTED] Verified Express, LLC "Making the Internet a Better Place" http://www.verex.com/ _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
