Hello from Germany,
I'm new here and this is my first question.
Attached a little program that displays the day of week in german language.
But the build .exe displays the english names.
What is my mistake?
Sub AppStart (Form1 As Form, Args() As String)
Dim jo As JavaObject
jo.InitializeStatic("java.util.Locale").RunMethod("setDefault", Array(jo.GetField("GERMAN")))
MainForm = Form1
MainForm.RootPane.LoadLayout("Layout1")
MainForm.Show
DatePicker1.DateFormat = "dd.MM.yyyy"
End Sub