Memo line feed Problems

Source: Internet
Author: User
Development and Application of VCL components for memo line breaks
Http://www.delphi2007.net/DelphiVCL/html/delphi_20061222223342174.html
I saved the memo control content (including line breaks) to the database, and then pulled it from the database into a line. The data obtained is in the same format as the input data, how can this problem be solved?

procedure tformdemo. buttonwriteclick (Sender: tobject);
begin
adoquery. SQL. text: = 'insert B (textfile) values (: textfile) ';
adoquery. parameters. parambyname ('textfile '). loadfromfile ('C: \ odbcconf. log', ftmemo);
adoquery. execsql;
end;
procedure tformdemo. buttonreadclick (Sender: tobject);
begin
adoquery. SQL. text: = 'select textfile from B ';
adoquery. open;
tmemofield (adoquery. fieldbyname ('textfile ')). savetofile ('C: \ test. TXT ');
memo. lines. loadfromfile ('C: \ test. TXT ');
end;


change the field type to memo. The carriage return ID of Delphi is #13 #10
for example, fieldbyname ('memo') during storage '). asstring: = memo1.text + #13 #10;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.