Bug? Issue with Date Dialog

trueboss323

Active Member
Licensed User
Longtime User
There's a bug on the date dialog that prevents me to choose days from 15 - 30. It wont let me scroll down on the calendar to choose the remaining days. And also despite that I have ShowCalendar = False , it still showing on the dialog.


Screenshot_1534221204.png


B4X:
    Dim dd As DateDialog
    dd.ShowCalendar = False
   
   dd.Show(Starter.loc.Localize("birthday1_msg") & CRLF & CRLF &  Starter.loc.Localize("birthday2_msg") ,Starter.loc.Localize("birthday3_msg"), Starter.loc.Localize("ok_lbl"),Starter.loc.Localize("cancel_lbl"),"",Null)
 
Top