Questions tagged [reminders]
402 questions
8
votes
4 answers
simultaneous Outlook reminders on multiple devices
Disclaimer: This is not actually a programming question, but I feel the audience on stackoverflow is more likely to have an answer than most question/answer sites out there.
Please forgive me, Joel, for stealing your question. Joel asked this…

Kurt W. Leucht
- 4,725
- 8
- 33
- 45
7
votes
2 answers
Adding event with reminders to calendar with 'Intent.putExtra()' way of doing
I'm trying to add events to calendar with the following code :
public Intent calPopulation()
{
Intent calIntent = new Intent(Intent.ACTION_INSERT);
calIntent.setType("vnd.android.cursor.item/event");
…

Alexandre
- 1,259
- 2
- 15
- 25
7
votes
1 answer
How to programmatically populate Reminders section on Android device's Calendar app?
I need to open Android device's Calendar app with some pre-populated data. The logic that Iam using seems to populate fields like:
Event description
Event location
From Date, To Date
All day event/not
Repeat /Recurrence Info
I am not…

user886827
- 101
- 1
- 4
7
votes
1 answer
Programatically add a reminder to the Reminders app
I'm creating a simple note application and I want to implement Reminders. The user would type a note, tap a button and it would set up a reminder in the Reminders app using the text. Is this possible, and if so, how do I do it? I have seen Apple's…

JDev
- 5,168
- 6
- 40
- 61
6
votes
7 answers
Sending Automated SMS Messages
First, we use .net & sql server.
I have a client that is interested in a system that will send SMS messages at scheduled times.
I have never done anything like this except for sending an sms through an email gateway, like 5551234444@vtext.com. But,…

Ronnie Overby
- 45,287
- 73
- 267
- 346
6
votes
1 answer
How can a sync of IOS reminders programmatically be triggered / forced?
I am writing a task mgmt app that is using EKReminder.
Works perfectly when using on one iOS device.
When I use on two devices (same apple account), I realise that reminder changes sync is with significant delay and even often incomplete. (tried…

TPeter
- 463
- 3
- 15
6
votes
2 answers
Missing popup reminders in Google Calendar Events
I am confused with the Google Calendar v3 interface. Something seems to have changed.
I have some VBA code that creates events and attaches a popup reminder:
If (sEventSettings.bSetReminder) Then
Dim oReminders As New Data.Event.RemindersData()
…

Andrew Truckle
- 17,769
- 16
- 66
- 164
5
votes
1 answer
How do you set a Bixby reminder programmatically?
I'm working on a Bixby integration and I'm looking through the Bixby documentation and I have some marketing info on Bixby reminders, but I'm looking for how reminders can be created programmatically or via an API and I'm not finding any information…

Dr. Ferrol Blackmon
- 947
- 7
- 8
5
votes
1 answer
Service Fabric Reminders
Documentation says:
Reminders are a mechanism to trigger persistent callbacks on an actor at specified times. Their functionality is similar to timers. But unlike timers, reminders are triggered under all circumstances until the actor explicitly…

Mardoxx
- 4,372
- 7
- 41
- 67
5
votes
0 answers
Access deep link information from Reminders API?
iOS 9 introduces a new reminders feature which allows you to deep link back to any app (including 3rd party apps which implement the NSUserActivity API).
For example, if you launch Messages, tap a conversation, hold the home button, and say, "Remind…

Senseful
- 86,719
- 67
- 308
- 465
5
votes
1 answer
Android Location Based Reminder / Event?
I'm looking for code samples on how to get an event when a users device is close to a pre defined location. I see here how to get an auto completed list of locations using the Google Places API…

Mike6679
- 5,547
- 19
- 63
- 108
5
votes
0 answers
why is the reminders app missing from iOS7 simulator
Hi i have an app that uses the reminders app to set a reminder with an alarm but the problem is that on the iOS7 simulator there is no app icon to the reminders app so i cannot open it up to see if the reminder has been set. Has anyone else had this…

user1592512
- 423
- 2
- 4
- 7
5
votes
1 answer
Event reminder not working for calendar events in android
My calendar application (version 2.3) adds the calendar event for user, but the reminder is not working. I have set event.put("hasAlarm", 1); like this.
Any solutions?

Droid_Dev
- 1,162
- 1
- 8
- 25
5
votes
2 answers
Django/Python email notification for events
I work on a page in Django, where users can set custom reminders for different dates (max. 3 per date). The reminders should send via e-mail. Its similar to Google Calendar, where you can set multiple reminders for each event in x-minutes, x-hour…

YYYY-MM-DD
- 4,411
- 1
- 15
- 14
5
votes
1 answer
C# code for sms and email notification service
I'm working on ASP.Net MVC 3.0 SQL Server Entity frame work
I need to create a Daily Reminder system, in which a user would enter the email address and the reminder timings like 1st Reminder(9 AM), 2nd reminder(12PM) and 3rd reminder(6PM), and the…
user981508