ActiveReports 12
Localize the Viewer Control
ActiveReports 12 > ActiveReports User Guide > Viewing Reports > Windows Forms > Localize the Viewer Control

You can localize all of the strings and images that appear in the Windows Forms Viewer control in included resource files, and alter and run a batch file to localize the control.

To localize the viewer control

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 file.

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

Localize strings (and images) in the resource files.

  1. Launch your zip program as an Administrator and open the WinViewer.zip file.
  2. Extract all of the files to
    C:\Program Files (x86)\GrapeCity\ActiveReports 12\Localization.
    A WinViewer subfolder is created.
  3. In the new WinViewer 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 file 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 WinViewer.bat and press Enter to run the file. The NameCompleter.exe application runs, and creates the following.
    • A SatelliteAssembly folder inside the WinViewer folder.
    • A language subfolder with the name of the culture you set inside the SatelliteAssemby folder.
    • A localized GrapeCity.ActiveReports.Viewer.Win.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.Viewer.Win.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.

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

  1. Add the following code in the form's constructor just before the InitializeComponent method is called.
  2. Replace the "ja" in the example code with the culture you specified in the WinViewer.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")

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");
See Also