Number and Date Formatting problem
Ok, so i have an application deployed on several customers, everything works great, but with a single customer, on a specific computer the reports run, but the Formatting of the text fields are not used at all.
It's like maybe the computer is missing a component? I'm using the .NET 2.0 version of the library, standard edition.
Anyone having a similar problem or how can i correct it, or what can i check?
Thanks.
It's like maybe the computer is missing a component? I'm using the .NET 2.0 version of the library, standard edition.
Anyone having a similar problem or how can i correct it, or what can i check?
Thanks.
Comments
The problem was when launching the assembly using WinDev (from PC Soft, which is where my main program is made, i just integrated FastReports).
On my machine, launching a Report, or Report designer everything works ok. But on ANY other machine, the Report or Report Designer would not load the Formatting options of any TextObject.
It does saves the formatting, but it doesn't load it.
What i did to fix the issue is to read the XML after loading FRX report, and iterate over all the nodes, and find any Format="XXX", create the Format (new CurrencyFormat, new DateFormat, etc...) depending on the Format.XXX attributes, and then finding the item on the report and assigning the correct format to it.
It's working ok now, but i believe WinDev is not initializing correctly the .NET library, but can't guess what's doing wrong.
At least it's fixed for the moment.
Thanks