N new_danoptic Member Mar 27, 2020 #1 Hi, I need to set the time option to a given time but I don't know the format of the Time I have to put in the data map I need to set the Hours and Minutes. Thanks
Hi, I need to set the time option to a given time but I don't know the format of the Time I have to put in the data map I need to set the Hours and Minutes. Thanks
Erel B4X founder Staff member Licensed User Longtime User Mar 29, 2020 #2 You need to put a Period object. B4X: Dim p As Period p.Initialize p.Hours = 13 p.Minutes = 30 Data.Put("field key", p) Upvote 0
You need to put a Period object. B4X: Dim p As Period p.Initialize p.Hours = 13 p.Minutes = 30 Data.Put("field key", p)