Be careful, when manipulating strings with the PeekB command!
When the result is a char represented by a value between 0 and 127 everything will be fine, but there could be a problem when dealing with other chars like I tried with the following line...
Code: Select all
If PeekB(@s+Dummy)='Ã'
Code: Select all
If PeekB(@s+Dummy)&$ff='Ã'