B4A Library [B4X] [XUI] AS Scheduler 📅 - MonthView, DayView (Week), AgendaView and CalendarView [Payware] - Alexander Stolte    Mar 3, 2025   (33 reactions)
ASScheduler_AgendaView
ASScheduler_CalendarViewMonth
ASScheduler_CalendarViewWeek
Classes
ASSchedulerAPI... value.
ASScheduler_CalendarViewMonth
Events:
AppointmentClick (Appointment... B4A Library [B4X] [XUI] AS CalendarExpandable📅 [Payware] - Alexander Stolte    May 26, 2025   (13 reactions) This view was developed from scratch based on the AS_DatePicker and the AS_CalendarViewWeek from... AS_CalendarAdvanced can use the same key to use this library.
This library is not free, because... B4A Library Calendar Library - lagore    Sep 5, 2013   (13 reactions) :)Hi, Having had a need to be able to create and delete calendar events I produced my first calendar library (most of the code I got from the net). The functions are; GetListOfAllCalendars(boolean)- this will return a 'Map' with the calendar Id and name. With this ID we can then create or delete events in this calendar. CreateEvent(int CalID, String Title, String Desc, String Location, long StartTime, long EndTime, String RRule, boolean AllDay)- used to create a calendar event using... B4A Tutorial Working with Calendars using ContentResolver (Query, Insert, Update, Delete) - DonManfred    Apr 11, 2020   (23 reactions)   tags: calendar Hello, i´m playing around with the Calendars on my Device and want to Query them. I found out how... the Calendars. I then decided to do the same with the ContentResolver. As the CalendarProvider is using... CalendarProvider. - It depends on the Permission "android.permission.READ_CALENDAR" and "android.permission.WRITE_CALENDAR". As both of them are dangerous permissions you need to use.... AddManifestText( <uses-permission android:name="android.permission.READ_CALENDAR"/> <uses... B4A Tutorial [B4A] [Class] [Calendar] Class wmCalendar - Android calendar manipulation based on DonManfred's explorations - walt61    Apr 19, 2022   (16 reactions) This is a calendar manipulation class based on @DonManfred 's explorations which you can find at https://www.b4x.com/android/forum/threads/working-with-calendars-using-contentresolver-query... B4A Code Snippet Add event in calendar using intent - asales    Sep 13, 2024   (8 reactions) Dim i As Intent i.Initialize(i.ACTION_EDIT, "content://com.android.calendar/events") 'The title of the event. i.PutExtra("title", "Team reunion") 'The description of the event i.PutExtra("description", "Project Discussion") 'Where.../CalendarContract.EventsColumns https://developer.android.com/guide/components/intents-common?hl=pt-br#AddEvent https://stackoverflow.com/questions/14694931/insert-event-to-calendar-using-intent... B4A Code Snippet SD: DateDialog (Calendar Picker) - Star-Dust    Apr 1, 2021   (26 reactions)   tags: DateDialog New Class: DateDialog (Calendare Picker) Methods: Initialize (Myactivity As Activity, Date As Long) SetDate(Date As Long) Show(Title As String) Properties: DateSelected As Long (Only read) Find alternative Code on Post#8 I have updated the code so it is possible to set the design you start with the current date (DateTime.Now) 55304... B4A Example [B4X] AS CalendarAdvanced - Expand with xCLV - Alexander Stolte    Jul 14, 2022   (8 reactions) 116898 This is a sample project to demonstrate how to expand or collapse the calendar and at the same time adjust a listview below it. https://www.b4x.com/android/forum/threads/b4x-xui-as-calendaradvanced-%F0%9F%93%85-onerow-fiverow-calendar-expand-and-collapse.128809/ Make sure you have V2.07 Private Sub ASCalendarAdvanced1_HeightChanged(Height As Float) 'xpnl_main is a panel under the calendar with a xCLV in it 'same top a the calendar height xpnl_main.Top = Height... B4A Question How to read 'repeated / recurring events' of a Calendar ? - AnandGupta    Mar 28, 2021 Using Don's Library https://www.b4x.com/android/forum/threads/working-with-calendars-using-contentresolver-query-insert-update-delete.100229/ I can now list all calendars in my phone, https://www.b4x.com/android/forum/threads/solved-read-the-events-from-a-specific-google-calendar-error.128997/ and also list events of a selected calendar, https://www.b4x.com/android/forum/threads/working-with-calendars-using-contentresolver-query-insert-update-delete.100229/post-630209 But, if a event... B4A Question [Solved] read the events from a specific google calendar - error - AnandGupta    Mar 23, 2021 I need to read the events from a specific google calendar (I have a few on my phone) and list them....b4x.com/android/forum/threads/working-with-calendars-using-contentresolver-query-insert-update-delete...("android.permission.READ_CALENDAR") wait for Activity_PermissionResult (Permission As String, Result As Boolean) If Result = False Then Log("NO Permission READ Calendar") Else Starter.rp.CheckAndRequest("android.permission.WRITE_CALENDAR") wait... Page: 1   2   3   4   5   |