roddy Member Licensed User Longtime User Jun 18, 2023 #1 I wrote this code: B4X: ASScheduler_DayView1.WorkingProperties.Active = True ASScheduler_DayView1.WorkingProperties.StartHour = 10 ASScheduler_DayView1.WorkingProperties.EndHour = 21 ASScheduler_DayView1.WorkingProperties.NonWorkingDays = Array As Int() All time period still on screen. Is there any way to not show 00:00-09:30 and 21:30-23:30 ?
I wrote this code: B4X: ASScheduler_DayView1.WorkingProperties.Active = True ASScheduler_DayView1.WorkingProperties.StartHour = 10 ASScheduler_DayView1.WorkingProperties.EndHour = 21 ASScheduler_DayView1.WorkingProperties.NonWorkingDays = Array As Int() All time period still on screen. Is there any way to not show 00:00-09:30 and 21:30-23:30 ?
Erel B4X founder Staff member Licensed User Longtime User Jun 19, 2023 #2 Moved to the questions forum. Upvote 0
Alexander Stolte Expert Licensed User Longtime User Jul 1, 2023 #3 roddy said: All time period still on screen. Is there any way to not show 00:00-09:30 and 21:30-23:30 ? Click to expand... Yes, just set the "Active" property to "False" B4X: ASScheduler_DayView1.WorkingProperties.Active = False Upvote 0
roddy said: All time period still on screen. Is there any way to not show 00:00-09:30 and 21:30-23:30 ? Click to expand... Yes, just set the "Active" property to "False" B4X: ASScheduler_DayView1.WorkingProperties.Active = False
roddy Member Licensed User Longtime User Jul 3, 2023 #4 Alexander Stolte said: Yes, just set the "Active" property to "False" B4X: ASScheduler_DayView1.WorkingProperties.Active = False Click to expand... I want to show only the ones starting at 10 o'clock like this screenshot. Upvote 0
Alexander Stolte said: Yes, just set the "Active" property to "False" B4X: ASScheduler_DayView1.WorkingProperties.Active = False Click to expand... I want to show only the ones starting at 10 o'clock like this screenshot.
jahswant Well-Known Member Licensed User Longtime User Jul 3, 2023 #5 You can scroll to 10 o’clock ! Upvote 0
roddy Member Licensed User Longtime User Jul 3, 2023 #6 jahswant said: You can scroll to 10 o’clock ! Click to expand... how to scroll to 10 clock by coding ? Upvote 0
jahswant said: You can scroll to 10 o’clock ! Click to expand... how to scroll to 10 clock by coding ?
roddy Member Licensed User Longtime User Jul 3, 2023 #7 Alexander Stolte said: Yes, just set the "Active" property to "False" B4X: ASScheduler_DayView1.WorkingProperties.Active = False Click to expand... Most people start work in the morning and not from 00:00 . Can the start time of DayView be customized? Upvote 0
Alexander Stolte said: Yes, just set the "Active" property to "False" B4X: ASScheduler_DayView1.WorkingProperties.Active = False Click to expand... Most people start work in the morning and not from 00:00 . Can the start time of DayView be customized?
Alexander Stolte Expert Licensed User Longtime User Jul 3, 2023 #8 Update 3.03 DayView Add Designer Property StartHour - The calendar automatically scrolls to the set hour Default: 0 Add Scroll2Hour Upvote 0
Update 3.03 DayView Add Designer Property StartHour - The calendar automatically scrolls to the set hour Default: 0 Add Scroll2Hour