Custom text with Special Field inside Crystal Reports.
-
This may not be the best forum to post, but I am using C#. I add a Special field: »Page N to M«. But I want to have a text in different language: »Stran: N od M« Thanks in Advance
-
This may not be the best forum to post, but I am using C#. I add a Special field: »Page N to M«. But I want to have a text in different language: »Stran: N od M« Thanks in Advance
I am not sure whether this will work but if you can load this field dynamically from C# (or .NET) do the following: 1) Create a resource file 2) add the field name and text 3) use this in the code instead of the hard coded string 4) Add another resource file with the culture name inbetween the file name and the .resx (e.g. myResource.resx will become myREsource.fr-FR.resx) 5) Copy the exact field to the second file 6) Write it in your language 7) Change the appplication culture to the resx culture
-
I am not sure whether this will work but if you can load this field dynamically from C# (or .NET) do the following: 1) Create a resource file 2) add the field name and text 3) use this in the code instead of the hard coded string 4) Add another resource file with the culture name inbetween the file name and the .resx (e.g. myResource.resx will become myREsource.fr-FR.resx) 5) Copy the exact field to the second file 6) Write it in your language 7) Change the appplication culture to the resx culture
Thank you, will try later