ActiveReports 12
Localize ActiveReports Resources
ActiveReports 12 > ActiveReports User Guide > How To > Customize, Localize, and Deploy > Localize ActiveReports Resources

You can localize all of the UI strings, error messages, and images that appear in ActiveReports in included resource files, and alter and run a batch file to localize each resource.

To localize ActiveReports Resources

All of the localization files are located in C:\Program Files (x86)\GrapeCity\ActiveReports 12\Localization.

Specify the culture you want to use in the batch files.

  1. Start Notepad or another text editor as an Administrator.
  2. Open *.bat file for each resource you want to localize and change the Culture value to the culture you want to use.
  3. Ensure that the path in ProgamFilesAssemblyDir is correct for your installation, but do not alter any of the other properties.
  4. Save and close each file.

Localize strings (and images) in the resource files.

  1. Launch your zip program as an Administrator and open the *.zip file for each resource you want to localize.
  2. Extract all of the files to
    C:\Program Files (x86)\GrapeCity\ActiveReports 12\Localization.
    A resource subfolder with the same name as the zip file is created.
  3. In the new folder, open each subfolder and change the strings in each of the *.resx files.
    Tip: Strings are located between <value> and </value> tags in the resource files.
  4. If you want to change the images, rename your localized images to the names of the ones in the Res\Resources subfolder and replace them with your localized images.

Run the batch files as an Administrator.

  1. From the Start menu, type cmd in the text box, and press CTRL + SHIFT + ENTER to open a command prompt as an Administrator.
  2. To change directories, type:
    cd C:\Program Files (x86)\GrapeCity\ActiveReports 12\Localization
    and press Enter.
  3. Type the name of the *.bat file and press Enter to run the file. The NameCompleter.exe application runs, and creates the following.
    • A SatelliteAssembly folder inside the resource subfolder.
    • A language subfolder with the name of the culture you set inside the SatelliteAssemby folder.
    • A localized GrapeCity.ActiveReports.AssemblyName.v12.resources.dll file inside the language subfolder.
  4. Copy the language subfolder and paste it into the Debug folder of your application.
    Note: Before you can distribute or put your localization in the Global Assembly Cache (GAC), you must first send the localized GrapeCity.ActiveReports.AssemblyName.v12.resources.dll file to GrapeCity and get it signed with a strong name. Then you can drag the language subfolder with the signed dll file into C:\WINDOWS\ASSEMBLY, or distribute it with your solution.

Test your localized application on a machine that does not share the culture of the localized DLLs.

  1. Add the following code in the form's constructor just before the InitializeComponent method is called.
  2. Replace the "ja-JP" in the example code with the culture you specified in the *.bat file.

To write the code in Visual Basic.NET

Visual Basic.NET code. Paste INSIDE the form's constructor just before the InitializeComponent method.
Copy Code
System.Threading.Thread.CurrentThread.CurrentUICulture = New System.Globalization.CultureInfo("ja-JP")

To write the code in C#

C# code. Paste INSIDE the form's constructor just before the InitializeComponent method.
Copy Code
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("ja-JP");
See Also

Concepts