Questions tagged [reminders]
402 questions
4
votes
1 answer
How to add MS outlook reminders event handlers with VBA
I want to extend MS Outlook so that when a calendar reminder pops up, I can run a VBA hook that can run an external program (like a batch script). In my case, I want to "forward" the reminder to a Linux desktop since I work in both environments and…

djb
- 4,930
- 1
- 34
- 37
4
votes
2 answers
android.database.sqlite.SQLiteException while adding reminder in calendar
@SuppressLint({"RxLeakedSubscription", "RxSubscribeOnError"})
public static long pushAppointmentsToCalender(Activity curActivity, String title, String addInfo, String place, int status, long startDate, boolean needReminder) {
/*****************…

Arpit
- 297
- 1
- 5
- 13
4
votes
2 answers
Is there any way to add identifier or tag custom event added in iCal?
I am setting a reminder in my app. I have added a custom event using EKEvent to iCal. Now when I retrieve events from iCal I get all the events present on that day. Is there any way to get/retrieve events added through my app only, I tried…

krusty
- 41
- 5
4
votes
2 answers
How can I calculate the +-*/% on laravel blade?
@foreach ($searchalls as $searchall)
@php
$i=1
@endphp
{{$i }} ={{$loop->iteration}}%3
@if($i == 1 )
@endif
…

robspin
- 771
- 3
- 14
- 33
4
votes
1 answer
Android reminder intent
Is it possible to open creating reminder using intent like
an event?
I couldn't find any solution.
Intent intent = new Intent(Intent.ACTION_INSERT)
.setData(CalendarContract.Events.CONTENT_URI);
startActivity(intent);
I want to invoke…

Martin
- 69
- 3
- 6
4
votes
2 answers
Error getting new calendar for new reminders
I'm trying to add a feature in my application so the user can get a list of reminders using the following method.
The following method is the main method I'm using for retrieving the reminders:
func getReminders(){
var eventStore : EKEventStore…

Husain Alhamali
- 823
- 4
- 17
- 32
4
votes
2 answers
Javascript Timed Notifications - setTimeout, setInterval
I am creating a web app that allows users to manage a calendar (CRUD events, tasks, reminders etc...)
And I am trying to implement a feature where they will receive a popup reminder x-minutes before the event/task. From my understanding there is…

A.O.
- 3,733
- 6
- 30
- 49
4
votes
0 answers
Unable to add / remove Event Reminder using Google Apps Calendar v3 API
I am trying to update an event in a Google Calendar: change the color and remove or add event reminders. I can easily update the color, but I can't find a way to remove the default reminder, or even add a new one.
Here is my code:
Event…

Q_C
- 443
- 3
- 11
4
votes
1 answer
AppleScript to get the active list in Reminders?
Can anyone help me to get the active list on display in the Reminders app on OS X?
According to the applescript dictionary for reminders, the application has a "default list" property which is "the list currently active in the Reminders…

user2831272
- 41
- 2
4
votes
1 answer
how to automatically set a reminder which data is from the database?
SOURCE CODE:
private void saveState() {
DatabaseHelper myDbHelper = new DatabaseHelper(ReminderEditActivity.this);
try {
myDbHelper.createDataBase();
} catch (IOException ioe) {
throw new Error("Unable to create…

sam
- 133
- 1
- 2
- 6
4
votes
3 answers
How to launch a notification in conjunction with AlarmManager?
I am trying to figure out how I should launch a notification. Creating the notification is not what I am asking, but rather a way to launch it in the background so its unobtrusive and the user can do whatever they were doing. Its for a calendar, a…

Andy
- 10,553
- 21
- 75
- 125
3
votes
2 answers
How can I dismiss UILocalNotifications that appear when my app is in the background?
I'm working on an iPhone app that needs to remind a user to check in at regular intervals using UILocalNotifications. If they don't check in for a few hours, they may be reminded a couple times, but I just want to show the latest notification.
Now,…

Toby
- 390
- 4
- 18
3
votes
1 answer
Django: Send reminder email
my app has list of events with start time (date and time). I want to make a scheduled task to send reminder via email to all user participate in event 1 hour before event start. (Note: Admin can change time of event).
I currently use celery to send…

Bách Đoàn Việt
- 61
- 2
3
votes
1 answer
Email Notifications and Reminders in Java Web app using Quartz Scheduler
I want to develop a simple Java Web app to send an email notifications after some task is done, such as a request submitted for approval, and reminders (to say approvers) at regular intervals. I want to do this using the Quartz Scheduler. I am a…

shiny
- 43
- 1
- 11
3
votes
1 answer
ionChange - detect changes only from view to model in Ionic 2
I have an Ionic 2 app that allows scheduling notifications (a reminder feature).
Well, the requeriments are:
When the user enters into the reminder page, it should check for a
saved reminder.
If there is a saved reminder (I'm currently saving this…

Ivan Lencina
- 1,787
- 1
- 14
- 25