I have a project in which the DateDialog appears without the calendar on the right.
Now, creating a new project, it appears. Same code to load and display:
Which general (global) setting can affect DateDialog?
Thanks
Now, creating a new project, it appears. Same code to load and display:
B4X:
Sub Test2
Dim Dd As DateDialog
Dim DateX As Long = DateTime.DateParse("31/01/2014")
Dd.Year = DateTime.GetYear(DateX)
Dd.Month = DateTime.GetMonth(DateX)
Dd.DayOfMonth = DateTime.GetDayOfMonth(DateX)
Dim ret As Int
ret = Dd.Show("Message", "Title", "OK", "Cancel", "", Null)
End Sub
Which general (global) setting can affect DateDialog?
Thanks