set formating parameters from code

Hello,

how can i programticly set the values of format the currency etc.. in one place before the report start, is there an envorinment setting for that ?
or should i go to , every text object control and set it from there , the second solution is very annoying

Thanks in advance

Comments

  • mohanarajmohanaraj 600001
    edited 2:12AM
    Hello,

    You can do this by program use this code

    FastReport.Format.NumberFormat format = new FastReport.Format.NumberFormat();
    format.UseLocale = false;
    format.DecimalDigits = 2;
    format.DecimalSeparator = ".";
    format.GroupSeparator = ",";

    and following that

    textObject.Formats.Clear();
    textObject.Formats.Add(format);


    Happy coding...
  • edited 2:12AM
    thank you mohanaraj, so i have to set it in every text object individually [img]style_emoticons/<#EMO_DIR#>/sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /> , that was what i was afraid of is there any other cenrtal way to set it, FastReport.Format.GeneralFormat , what this think do, anyone have any idea?[/img]
  • edited 2:12AM
    Hello,

    There is no global settings for formatting. You can change the current thread's globals, but this is not a good idea.
  • edited 2:12AM
    Yes you are right it is not a good idea, so only solution is; before report started to run i have to loop all text object and set their format value inside of my code

    thanks

Leave a Comment