Guest DavisG Posted March 10, 2011 Posted March 10, 2011 If you get an error on compile which reads something like: Stray '\240' in code this means a bad unprintable character is in that line(or may be in the header file which is filling in some variable name with a #define). The way to get rid of this error is to manually delete the spaces in the line (or #define) and replace them with... wait for it... spaces. I've seen this twice. Once with a block of code cut and pasted from an email in Outlook, and once with data cut and pasted from Excel. Remember to watch for spaces at the end and beginning of the line.
Recommended Posts