Hi

I want export a table to text file, but I want format FixedLength

I create the SCHEMA.INI

[MYARQ.TXT]
ColNameHeader=false
Format=FixedLength
MaxScanRows=25
CharacterSet=OEM
COL1=CODIGO char width 5
COL2=DATA date width 9
COL3=PRECO float with 18

But When I Export , It create the file as
"01234";30/01/2001;153,52
"56789";30/01/2001;142,53
.
.
ETC

I want as
012342001013015352
567892001013014253
ETC

Thank you in advance