I had a program with code conversion VB6 (on WinXP 32bit) which sends command to RS232 radio modem. I rewrite the code into VB.NET (WinX 64bit) but the output string to serial port is different. For example:
VB6 code:
Chr$(193)
Output is:
VB.NET code:
Convert.ToChar(193)
Output is:
I think this has something to do with character tables but cannot find any solution Thanks for any info