Hi,
I am trying to load up a text file which contains special characters
an example of the line i am loading is
54743 ALG00006 Chemloul & Associés
when i load it using the code
integer li_FileNum
string ls_text
boolean lb_stop
messagebox("will open the file ","c:\rankings\website_files\test.txt")
li_FileNum = FileOpen("c:\rankings\website_files\test.txt", LineMode!)
do
if FileReadEx(li_FileNum, ls_text)>0 then
messagebox("text read",ls_text)
I get the following message box text
the characters display incorrectly
I am. not concerned about messagebox doing this but i need to store the input into mydatabase do i need a different datatype or how do i make sure i get and see the correct characters. Currently if i load the file uising dw_import for example i get the same result
thanks in advance
using PB 19.0 ( can use newer version if that makes difference !)
Andrew