Hi,
I'm doing an app where you fill a form to open a ticket (what an innovative app 😄 ).When I click on the icon to go to the form page, I use this line to set my variables do display :
Set(_MinuteCal; Minute(Now()))&Set(_HeureCal;Hour(Now()))&Set(_DateCal; Today())
On my form page, I put in HourValue.Default : _HeureCal then in MinuteValue.Default : _MinuteCal and in DateValue.Default : _DateCal.
My problem is that when the hour or minute value are less than 10 it displays the value : 0 in my date picker.


Even if I do a ResetForm, the value is not displayed right.
The right values appears only when HourValue or MinuteValue are greater than 10.
Do you have any thoughts about how to make it work correctly ?
Thank you in advance.