Android Question Calendar AddEventAttendee

ddefrain

Member
Licensed User
Longtime User
Hello Everyone.

With this code I can Add an Event Reminder

B4X:
Mycal.CreateEventWithReminder(3,"Example", _
        "This is an example of creating an event in the selected calendar using the Calendar_ID" _
        ,"San Diego" _
        ,DateTime.Now + 900000 _
        ,DateTime.Now + 1800000 _
        ,5,Null,False)

Now, which is the correct code for an Attendee Event?

I use this code but nothing happens the email is not included/added in the Attendee Event.

B4X:
Mycal.AddEventAttendee(3,"Example","[email protected]","ATTENDEE","REQUIRED","INVITED")

One more thing including the email in the Attendee the calendar will send the email to the invited person? or I'm wrong?

Thank's in advance
Best Regards!
 

DonManfred

Expert
Licensed User
Longtime User
What is MyCal?

Using ContentResolver:

Add Attendee to Event:
 
Last edited:
Upvote 0

ddefrain

Member
Licensed User
Longtime User
What is MyCal?

Using ContentResolver:

Add Attendee to Event:

Hi @DonManfred Thank's for your support

MyCal
B4X:
Dim Mycal As MyCalendar
    Mycal.Initialize

I was trying ContentResolver but i did'nt find the
B4X:
    Dim acon As AttendeeConstants

acon is in red color and I don't know where to get AttendeeConstants

I have ContentResolver Library 1.50 version selected


Thank you so much
 
Upvote 0

ddefrain

Member
Licensed User
Longtime User
did you downloaded the library in the Thread i linked. The GoogleCalendarClient lib. Download the newest one of them.

Hi @DonManfred Thank's for your support

I have GoogleCalendarClient (Version 0.20) installed.
I'd deleted the library (refresh the library admin), downloaded again and the problem persist
1608489807405.png


1608491278253.png

Thank's
Regards
 

Attachments

  • 1608491223909.png
    1608491223909.png
    257.9 KB · Views: 126
Last edited:
Upvote 0
Top