Caution: Do not change the ProjectName, dllName, msDir, or BaseNamespace. |
Note: The Viewer.bat file copies the language subfolder with the ActiveReports.Viewer6.resource.dll to Run the Viewer.bat file as Administrator
Log in as an Administrator The Administrator account is disabled by default so you should active it first.
|
Note: If you want to put your localization in the Global Assembly Cache (GAC), you must first send the localized ActiveReports.Viewer6.resources.dll file to GrapeCity and get it signed. Then you can drag the language subfolder with the signed dll file into C:\WINDOWS\ASSEMBLY. Since the UAC in Vista and Windows7 prevents drag and drop registry to the GAC, we recommend that users of these operating systems run the Gacutil.exe as described on MSDN. |
To write the code in Visual Basic.NET
Visual Basic.NET code. Paste INSIDE the 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"); |