My program uses some special characters that need to be saved into a Table. Here is an example.
r = chr(169)
replace table.field with r
for anyone that doesn't know ASCII 169 is the copyright symbol.
When I go to pull this out of the table a different character is pulled, I've also looked in the table in a browse window and the different letter is diplayed as well.
test = table.field
? asc(test) && displays '99'
Can some one please help me solve this problem. I understand that it's easy enough just right an if statement for the one character, but since ASCII 99 is 'c' and I save multiple characters with this one character it not as simple. Also below is a list of all the ascii characters the table does not store properly.
128-148,150-159,164,167-169,173-175,179-180,182,184-185,190,192-195,200,202-208,210-213,215-219,221-222,227,240,245,248,253-254
This is a very important part of my program. Thanks for any help you all give.
-Serincino
If you see a programmer in the office before 9am, they probably never left.
r = chr(169)
replace table.field with r
for anyone that doesn't know ASCII 169 is the copyright symbol.
When I go to pull this out of the table a different character is pulled, I've also looked in the table in a browse window and the different letter is diplayed as well.
test = table.field
? asc(test) && displays '99'
Can some one please help me solve this problem. I understand that it's easy enough just right an if statement for the one character, but since ASCII 99 is 'c' and I save multiple characters with this one character it not as simple. Also below is a list of all the ascii characters the table does not store properly.
128-148,150-159,164,167-169,173-175,179-180,182,184-185,190,192-195,200,202-208,210-213,215-219,221-222,227,240,245,248,253-254
This is a very important part of my program. Thanks for any help you all give.
-Serincino
If you see a programmer in the office before 9am, they probably never left.