Die Angebote richten sich an kommerzielle und industrielle Kunden.
Alle Preisangaben sind netto.
Komplette Preisliste.
Suchen Sie die richtige Edition? Besuchen Sie unsere Vergleichstabelle
Sisulizer 2010 ist ein kostenloses Update für alle Sisulizer 2008-Kunden. Die neue Version kann kostenlos heruntergeladen werden und der Sisulizer 2008-Lizenzschlüssel funktioniert weiterhin.
Verwenden Sie noch Sisulizer 1.x?
Aktualisieren Sie jetzt auf V2010 und profitieren Sie von allen neuen Funktionen in V2008 und V2010.
26.7.2010
Der neue Build kommt mit vielen neuen Features. [mehr]
10.8.2010
Eating our own dog food. [mehr]
26.7.2010
Localize .po files with plural forms. [mehr]
16.7.2010
We go for Berlin, Germany... [mehr]
10.6.2010
Better support for Google Translate and Bing Translator. [mehr]
You should never hard-code date values. Besides different date separators the date order differs between countries. In the short date format, the USA uses mm/dd/yyyy where m is the month, d is the day, and y is the year. Germany uses dd.mm.yyyy. If you do not take care of this, for example, in Visual Basic, a date string like 12/9/2006 can be interpreted as 9th December or 12th September.
If you use medium or long date formats, the day and month names must also be translated. If you use format routines, you should ensure that your development system supports date format in the way that you require.
If you need to calculate with dates, store them in a format that is system independent like the ISO 8601 format yyyy-mm-ddThh:mm:ss; you can also convert the dates to a system-independent date number format, such as date serial. This makes dates sorting easy.
Be sure to store dates internally and in files without using a format. Use the data type for your programming language. If you allow user input, collect the day, month and year in separate fields, and internally build a date data type from these fields.
When you display dates, format them with the right system settings. The Windows API provides functions to get the appropriate values. In .Net, check the culture name space. When you allow user input, make sure that the user knows which format is required.