Update to Version 3

Sisulizer version 3 is a paid update recommended for all Sisulizer customers.

Still using Sisulizer 1.x or Sisulizer 2008/2010?

Time to update to version 3 now and profit from all new features in version 3.

Specials run until May, 20 2012

Offers are for commercial and industrial customers only.
All prices are net.

Complete Price Sheet.

Not sure which edition is the right one? Visit our Edition Comparison

Social Networks

Please click this facebook button if you want to share this page with friends

Share

(english) (german)


Please click this Google +1

button to give Sisulizer a positive vote in Googles new voting system.

Thank you very much.

Selected Customers

Software Localization News

Version 3 Build 331 released

23.4.2012

The new build comes with many new features. [more]

Top News: Version 3

9.11.2011

Sisulizer version 3 out now. [more]

Tips & Tricks

30.9.2011

You are looking for tips and tricks around Sisulizer? [more]

Delphi Tage

8.9.2011

Delphi Tage 2011 in Cologne are sold out! [more]

Download Build 321

12.8.2011

Please us a download manager for your download. [more]

How to avoid Mojibake

Working with Code Pages in Windows

Background Info: Use virtual machines for different code pages

Use virtual machines for different code pages

The following information describes how you can learn how to change the system code page. This is simple; however, Windows asks you to reboot your machine every time. This is time-consuming and might interrupt your work.

A solution to this is to use a virtual machine, such as Virtual PC or VMWare. Set up multiple virtual PCs with different code pages for the languages you want to support and test without rebooting. While the market even offers free editions all you need is some free space on your hard drive to follow this practical hint.

Applications designed on Win32, depending on the development language or IDE, use either UNICODE or ANSI. ANSI applications, like programs designed with Delphi and C++ Builder, use code page encoded strings and a non-Unicode version of WIN32 API. Why do you have to know this information?

There are several different code pages. English and most other Western languages use code page 1252. Japanese uses 932, Russian uses 1251, and so forth. To render an ANSI string correctly, the application must have the right system code page. This page is the default code page of the system. In Windows ME, 98, and 95 you cannot change the system code page.

However, in Windows 7, Vista, Xp, 2008, 2005, 2003, 2000, and NT, you can change the system code page.

How do I know if the system code page is not right?

Usually, you will see the problem when trying to run your application. If strings in the menu items and components do not show correctly and display gibberish, the system code page is not right. This effect is called Mojibake.

The following screenshot shows a Japanese application that is run on a computer where the Japanese system code page is active.

Dialog with Japanese chars

Everything is fine here.

Dialog with scrambled chars

However, if the same application is running on a computer that has the Western code page, the application appears like this. As you can see, hopefully without the help of your Japanese colleagues, the strings are mojibake ("character changing" = gibberish).

How do I change the system code page