Hello how to deal with it?
Dim a As String ''
Dim b As String
a = "ŚĆłł" '<---- are Polish characters of the alphabet
b = a.GetBytes ("Unicode")
File.WriteString as - >>> b .txt
b.txt ----> send to FTP as a .txt file
the downloaded and displayed b.txt file on another computer looks like this "iÄ"
How to change the b.txt encoding before uploading to ftp
Sorry for the way I wrote it, but it's for illustration.
Dim a As String ''
Dim b As String
a = "ŚĆłł" '<---- are Polish characters of the alphabet
b = a.GetBytes ("Unicode")
File.WriteString as - >>> b .txt
b.txt ----> send to FTP as a .txt file
the downloaded and displayed b.txt file on another computer looks like this "iÄ"
How to change the b.txt encoding before uploading to ftp
Sorry for the way I wrote it, but it's for illustration.