I searched for the ASCII Extended Table and to my surprise I found two different tables...
In one of them it begins with "€" and the other one begins with "Ç"... I tried running in my VB the following code:
VB Code:
Dim i As Long For i = 128 To 255 Debug.Print "Ascii(" & i & ") = " & Chr(i) Next i
And in 128 I got "€", but is it safe to assume all computers will have Chr(128) = "€"?
