memo f

when I am passing memo text from delphi form to fastreport ( frxReport6.Variables.Variables:=''''+Memo2.Text+''''; ) memo it show " ' " (one apostrophie) at the begining and at the and of memo text.

any solution?

Comments

  • edited August 2009
    Hallo,

    try this:
    frxReport6.Variables.Variables['yazi']:=''+Memo2.Text+'';
    

    only '' not ""

    have a nice day

    or you want the caracter " before and behind your Memo Text ?
  • edited 10:06PM
    Hallo,

    try this:
    frxReport6.Variables.Variables['yazi']:=''+Memo2.Text+'';
    

    only '' not ""

    have a nice day

    or you want the caracter " before and behind your Memo Text ?



    Thanks it works

Leave a Comment