Hi Evereybody,
for a simple question, I'm loosing so much time....
I have a set a datetime value for appointments, so I have add in my form a DatePicker and two combobox (one for hours and 1 for minutes)
The cbxHours.Items is: ["";"08";"09";"10";"11";"12";"13";"14";"15";"16";"17";"18";"19";"20"]
The cbxMinutes.Items is: ["";"00";"15";"30";"45"]
I want that if i select a record whit an appointment, in these box I have to display the Appointment Hour and the Appointment Minute
So, on the OnVisible Event on this form I have this code:
Reset(cbxHours);;
Reset(cbxMinutes);;
If(selectedItem.Stato.Value = "Appuntamento";
Set(vAppointmentDate; Text(selectedItem.Appuntamento; "[$-it-IT]dd/mm/yyyy"));;
UpdateContext({vAppointmentHour:Text(Hour(selectedItem.Appuntamento))});;
UpdateContext({vAppointmentMinutes:Text(Minute(selectedItem.Appuntamento))});;
;
UpdateContext({vAppointmentDate:Blank()});;
UpdateContext({vAppointmentHour:""});;
UpdateContext({vAppointmentMinutes:""})
)
But If i add the vAppointmentMinutes as cbxMinutes.DefaultSelectedItems I have an error.
What is wrong?
Thanks
Marco