Upgrade from 6.02 to 9.03 and "Print to text file" changes
Hello!
Any time ago I'm migrate my project from 6.02 report engine to 9.03 and take
some differece:
Then I'm in 6.02 export string (DBText) in text file put clear string:
for example DBText ='111 222 333 444'
in file I'm get clear string:
111 222 333 444
But then I'm export in Text File in 9.03 same string
in text file put my string with quoted chars:
"111 222 333 444"
As I understand quoted strings put in the file is string has blank spaces!
Is exist options to turn off put quoted strings in export file?
Thanks in advance.
Regards,
Nikolai Bochkarev
Any time ago I'm migrate my project from 6.02 report engine to 9.03 and take
some differece:
Then I'm in 6.02 export string (DBText) in text file put clear string:
for example DBText ='111 222 333 444'
in file I'm get clear string:
111 222 333 444
But then I'm export in Text File in 9.03 same string
in text file put my string with quoted chars:
"111 222 333 444"
As I understand quoted strings put in the file is string has blank spaces!
Is exist options to turn off put quoted strings in export file?
Thanks in advance.
Regards,
Nikolai Bochkarev
This discussion has been closed.
Comments
This was a fix that was added for RB 6.03. This was necessary for text
files with text entries containing spaces. If you would like to revert back
to the way it worked before, take a look at the
TppTextFileDevice.SavePageToFile routine located inside the ppFilDev.pas
file. There is a single line that needs to be commented out.
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Ok, I'm understand and fix it for me!
Nikolai