Variable with String Values?

Probably a stupid question but I can't find an example showing how to do this.

I have some varaibles I've declared myself in Delphi via AddVariable(). Numbers, dates etc are ok but string variable give me errors:

If there isn't a space in the variable content I get: "Undeclared identifier"
or
or if I have a space in the text I get: "Error in expression: ";" expected"

I assume this must be a syntax thing. The memo field I'm using has: [variable_name]. What is the proper way to get my string variable into this field?

Many thanks
Mark

Comments

  • edited 2:47AM
    you should use quotes to pass that variables:

    frxReport1.Variables := QuotedStr(your_string);

    another way is to use frxGlobalVariables - they are static and don't require quotes:

    frxGlobalVariables := your_string;
  • edited 2:47AM
    Ok, I figured this out. I have to put the text in quotes: variable := '''xxxx'''

    Mark
  • edited 2:47AM
    Thanks Alex, you just beat me to it!

    Mark

Leave a Comment