Questions tagged [contactgroups]

16 questions
4
votes
1 answer

Create gmail contact group in android

In my android application i have try to create a gmail group but not able to create the way i have tried is below ArrayList opsGroup = new ArrayList(); …
user4683646
2
votes
1 answer

How to open contact showing the "Group" tab using Intent?

I want to open Contact from my own Android app. If I do : Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(ContactsContract.Contacts.CONTENT_URI); I can open contact, showing the People tab. How can I achieve a similar goal but…
2
votes
2 answers

Nagios advanced Configuration - changing contact_groups after defined by hostgroups

is it possible to set an default contact_group in hostsgroup and modify (redefine) this contact_group later in the service. Or by another way. Background: We use nagios to monitor near 100 Hosts and near 1000 services. For easy configuration we…
TimCgn74
  • 43
  • 2
  • 7
1
vote
1 answer

Outlook Distribution Lists (DistListItem) are not updated after a referenced contact (ContactItem) is changed

I've gathered some code from around the web to create Contacts and then Contact groups. However, if I update the contact after creation, the "relation" between the contact object inside the Contact group and the Contact is gone. The Contact group is…
Dennis
  • 13
  • 5
1
vote
2 answers

Adding Contact to new group in android

Hi im trying to create new gmail group and add contact to it.I'm successful in creating a group but contacts are not getting added to it.I have read many answers in stackoverflow but nothing worked.I cannot figure where i went wrong.I'm posting my…
user4875712
1
vote
1 answer

Add an email to outlook distribution list using powershell

I just create a new distribution list on Outlook byt he following script $outlook = new-object -com Outlook.Application $contacts = $outlook.Session.GetDefaultFolder(10) $dl = $contacts.Items.Add("IPM.DistLIst") $dl.DLName = "Group…
1
vote
1 answer

Getting really weird long Contact Group names

When looking at the Contact Groups on Google Contacts or in the People application of my HTC Legend phone, I get the groups names ok eg: Friends, Family, VIP, Favorite etc... But in my application I get really wrong names such as "Family" became…
Pentium10
  • 204,586
  • 122
  • 423
  • 502
1
vote
2 answers

Update doesn't work when using ContentResolver to update Contact Groups

I have this code for update: public Boolean update() { try { data.put(ContactsContract.Groups.SHOULD_SYNC, true); ContentResolver cr = ctx.getContentResolver(); Uri uri = ContentUris.withAppendedId(ContactsContract.Groups.CONTENT_URI,…
Pentium10
  • 204,586
  • 122
  • 423
  • 502
1
vote
3 answers

Issue using Contact Group delete on Android

I have this code to delete a Contact Group public void delete(Activity act,String[] args) { try { int b=act.getContentResolver().delete(ContactsContract.Groups.CONTENT_URI,"_ID=?", args); Toast.makeText(act,…
Pentium10
  • 204,586
  • 122
  • 423
  • 502
0
votes
1 answer

do not get the notification at the time of uninstalling the apps using on receive() method

mine code into ApplicationBroadcastService.class file is : public class ApplicationBroadcastService extends BroadcastReceiver{ @Override public void onReceive(Context context, Intent intent) { // TODO Auto-generated method stub Activity a=new…
Rushabh Patel
  • 3,052
  • 4
  • 26
  • 58
0
votes
1 answer

Access to other contacts groups information

From Google Contacts web interface you can edit a contact and include her in several groups/tags. Then if you decide to "Hide from contacts", the contact will not be in My contacts anymore, but she still exists in Other contacts, and also you can…
0
votes
1 answer

Trying to send birthday greetings to someone on 18th birthday through Kentico

I am trying to figure a way to send birthday greetings on someone's 18th birthday through Kentico 11. I am trying to use contact groups, but I don't see a way to identify birthdays through the contact groups. Is there a way to pull/identify someones…
0
votes
1 answer

How to add Contact Group to Exchange-2007 Email Account?

I use EWS to manage Emails, Contacts, Groups and Calendar of Exchange server accounts. I want to add Contact Group. I have tried by following code. ContactGroup myContactGroup = new ContactGroup(service); // Give the group a…
0
votes
1 answer

When is the ANDROID Contact Group PHYSICALLY removed instead of being marked as deleted?

I am trying to permanently remove a Android Contact Group and have used the Sync parameter and it always appears the record is simply marked as deleted and not physically removed. Can anyone explain how/when, if ever, the Contract group row is…
Nope
  • 3
  • 6
0
votes
1 answer

How to use powershell to add a contact to a contact group On outlook 2010

I just created a Distribution list: $outlook = new-object -com Outlook.Application $contacts = $outlook.Session.GetDefaultFolder(10) $dl = $contacts.Items.Add("IPM.DistLIst") $dl.Save() and then created a new contact $newcontact =…
1
2