13,676 questions
0
votes
1
answer
49
views
How do I enter a date in Applescript in order to create a calendar event?
Trying to script new calendar events for use with Raycast (which is limited in that it can't add 0 duration or all day events, can't add alarms.)
The following code results in
error "Calendar ...
0
votes
0
answers
84
views
How to change the week letters of the Telerik Library calendar in C# WinForm
I am using Telerik version 2023.1.117 and I was able to change the month style in RadDateTimePicker but I was unable to change the week style and its popup. Is there a way I can change that too?
I ...
0
votes
1
answer
37
views
Trying to fix an 3rd party application calendar access issue for an M365 user
To begin, I have limited knowledge regarding the Microsoft Graph and permissions associated with various applications. Please bear with me as I attempt to outline the situation and identify potential ...
0
votes
1
answer
25
views
EventCalander - Stop overlapping event on load
I'm using this script https://github.com/vkurko/calendar to create an event calendar.
It seems to be working well, but I'm trying to work out how to stop an event being added if will overlap another ...
0
votes
0
answers
16
views
PowerBI: not all date values are used in calculation
strong textI have a odata table which is linked to powerbi-desktop as a source.
there are columns "period" - meaning the date of the payment and "value" - payment value.
I created ...
0
votes
0
answers
36
views
Flutter web app requesting Google Calendar scope, and Google Cloud verified, but still shows unverified in web
I have a Flutter web and android app using google calendar api, create/edit/delete a calendar for the app's own use. I use googleapis package, and chose "calendarScope" to access google ...
0
votes
0
answers
39
views
Google OAuth not requesting calendar.events scope in Node.js with Passport.js
I’m using Passport.js with Google OAuth 2.0 in my Node.js app to authenticate users and request access to Google Calendar events. Despite adding the calendar.events scope in both my Passport strategy ...
0
votes
0
answers
44
views
.ics file is not getting detected by Google Calendar
There is two user . USER A and USER B . If User A has sent the below ics file to the user B then User B is getting his calendar blocked . But User A's calendar is showing empty .
My requirement is ...
1
vote
0
answers
54
views
How to make prev and next date buttons only move one date
I built a date picker that shows a list of dates, with three previous dates, the current date in the middle, and three next dates. On either side, there are buttons:
The Previous button moves the list ...
0
votes
0
answers
11
views
Calendar squishes when there are too many icons in a cell (React)
I trying to develop a gardening calendar, and it breaks when text or icons won't fit anymore. Can somebody help me with this, please?
I tried a lot of different ways to wrap, but nothing works.
return ...
0
votes
1
answer
56
views
Google Calendar - get an event by ID in python script
I have created an event on Google calendar in python using these lines:
service = build('calendar', 'v3', credentials=credentials)
now = datetime.datetime.utcnow().isoformat() + 'Z'
events_result = ...
0
votes
0
answers
19
views
Sync Google Calendar embedded with Google account
I have inserted Google Calendar embedded on my website using an iframe such as:
<iframe src="https://calendar.google.com/calendar/embed?src=<myEmail>.com&ctz=America%2FLos_Angeles&...
0
votes
1
answer
52
views
App doesn't appear in Privacy & Security Calendar settings when using EventKit on macOS
I'm developing a macOS app using EventKit to access calendar events, but I'm facing an issue where my app doesn't appear in System Settings > Privacy &
Security > Calendar even after ...
1
vote
1
answer
67
views
Why is the current date number not showing on a tkcalendar restricted to only select Monday weekdays?
I have created a tkcalendar to restrict the user by only enabling the selection of Mondays. (The code is based on code previously submitted by j_4321 that allowed the selection of Wednesdays and ...
0
votes
1
answer
133
views
Check user permissions to move original event in Google Calendar
I am developing an application that gives users an option to grant my application access rights to add/modify events in their calendars. I am obtaining access rights to user calendars using OAuth2 ...