Hi,
In your Program.cs add the following lines:
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Threading; //Add
using System.Globalization; //Add
namespace Simple
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Thread.CurrentThread.CurrentUICulture = new CultureInfo("de"); //Add
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(fals e);
Application.Run(new Form1());
}
}
}
Best regards,
Jaakko Salmenius
http://www.sisulizer.com - Three simple steps to localize