Our system use Access VBA function Chr() to get ASCII code to generate barcode. All of computers (include Windows 10, Windows 8 and Windows 7) result of Chr() is correct while one of Windows 8.1 result is different.
For example
All computers return of Chr(209) is “Ñ” which is correct. Return of Ch(65) is “A” which is correct.
One computer return of Chr(209) is “?” which is incorrect. Return of Ch(65) is “A” which is correct.
I try to use ChrW and ChrB. Both still do not return proper ASCII. Not sure why that computer return is different. Test results from computers and seems that computer cannot return correct ASCII for 128~256 codes.