i have to use
Code: Select all
USE (cAppdir+cDBF) EXCLUSIVE VIA "DBFCDX" CODEPAGE "UTF8"when try to "APPEND" from DBF it does show "Umlaute" wrong
---
when Import *.m3u File into DBF i have to use
Code: Select all
USE (cDBF) EXCLUSIVE ALIAS "IMPORT" VIA "DBFCDX"but when APPEND DBF i have to use this
Code: Select all
IF USED()
CLOSE
// open without Codepage for APPEND ???
USE (cAppdir+cDBF) EXCLUSIVE VIA "DBFCDX"
APPEND FROM ( cImport )
CLOSE
// re-open with Codepage UTF8
USE (cAppdir+cDBF) EXCLUSIVE VIA "DBFCDX" CODEPAGE "UTF8"
GO TOP
DoMethod( "IPTVMAIN", "Browse_1", "refresh" )