Is it possible to change the max and min date for in CultureInfo("ar-SA") or any Culture in general ?
this the sample code that change the Culture
Dim CultureInfo As CultureInfo
CultureInfo = New CultureInfo("ar-SA")
CultureInfo.DateTimeFormat.Calendar = New System.Globalization.GregorianCalendar
Thread.CurrentThread.CurrentUICulture = CultureInfo
Application.CurrentCulture = CultureInfo
The date is limited between 30/4/1900 and 13/5/2029 so any advice about how to deal with this limited range
![120354-date.png][2]