Family calendar problems - can't Add Family Member

When I try to add a family member in iOS, the "Next" button does nothing.

Frank,
you are attempting to a and event to a calendar you subscribed to.  When you subscribe to a calendar that is, in a sense, read only and not something you can change.  You should select another calendar to add the even to.
Alos... I am going to  ask this be moved to the "Applications > iCal" forum.

Similar Messages

  • Can't add Shared Member using API

    I would like to create a lot of shared members.Using API I do it as following according to documentation: ESS_MBRINFO_T MbrInfo; memset(&MbrInfo, '\0', sizeof(MbrInfo)); strcpy(MbrInfo.szMember, (char*)mbrName); MbrInfo.usShare = ESS_SHARE_SHARE; sts = EssOtlAddMember(getOutline(), &MbrInfo, ESS_NULL, hMbr, &hNewMember); When I try to add shared member, then sts = 1060051.So I have to change names and after correct them manually.Using HAB API I can't add shared member too.Regards,Georgy

    Hi and Welcome to the Forums!
    To really help, you should come and create an account on these forums...there are many unanswered questions from your initial inquiry...come here, create an account, and open a thread so that it all can be resolved:
    http://supportforums.blackberry.com/rim/
    Cheers!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Can not add "Local" member in Planning application

    Hi,
    I have added currency dimension as a user defined dimension and would like to add "USD" and "Local" members as its children. But i can not be able to add "Local" member as planning is throwing an error: "Member Name with "Local" already exists".
    i checked across all other dimensions and nowhere i defined a member name or alias as "Local". Any guess ??
    Thanks,
    Praveen

    Hi,
    When i looked into planning app relational schema, i see that both "USD" and "Local" are already been defined under HSP_XCRNCY. My planning app is not a multi currency app so i would still need to add "USD" and "Local" as members of currency dim. is there anyway i could get it done ?
    thanks,
    praveen
    Edited by: user651476 on Mar 21, 2013 10:59 PM

  • Reflection problem: can not access a member of class java.lang.IllegalAcces

    package org.struts.ets.utility;
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.lang.reflect.InvocationTargetException;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import org.struts.bean.FieldTrouble;
    import org.struts.bean.GenericDAOBean;
    public class DynamicObjectCreation
         public static void main(String... args)
              FieldTrouble ft = new FieldTrouble();
              try
                   Class<?> c = ft.getClass();
                   //Class<?> c = FieldTrouble.class;
                   /*Class<?> c = null;
                   try
                        c = Class.forName("org.struts.bean.FieldTrouble");
                   } catch (ClassNotFoundException e)
                        e.printStackTrace();
                   Field f = c.getDeclaredField("var1");
                   //f.setInt(ft, 42); // IllegalArgumentException
                   f.set(ft, new String("A"));
                   System.out.println(ft.getVar1());
                   // production code should handle these exceptions more gracefully
              } catch (NoSuchFieldException x)
                   x.printStackTrace();
              } catch (IllegalAccessException x)
                   x.printStackTrace();
    }// If I put FieldTrouble.java in any other package than the current package I am running this code from. I get the following error:
    java.lang.IllegalAccessException: Class org.struts.ets.utility.DynamicObjectCreation can not access a member of class org.struts.bean.FieldTrouble with modifiers ""
         at sun.reflect.Reflection.ensureMemberAccess(Unknown Source)
         at java.lang.reflect.Field.doSecurityCheck(Unknown Source)
         at java.lang.reflect.Field.getFieldAccessor(Unknown Source)
         at java.lang.reflect.Field.set(Unknown Source)
         at org.struts.ets.utility.DynamicObjectCreation.main(DynamicObjectCreation.java:35)
    I tried all possible ways of creating class as:
    Class<?> c = ft.getClass(); OR
    Class<?> c = FieldTrouble.class; OR
                   /*Class<?> c = null;
                   try
                        c = Class.forName("org.struts.bean.FieldTrouble");
                   } catch (ClassNotFoundException e)
                        e.printStackTrace();
    Edited by: ..-__Kris__-.. on Feb 21, 2008 10:26 AM
    Edited by: ..-__Kris__-.. on Feb 21, 2008 10:26 AM

    Any hidden performance or memory issue here?
    Let us consider an object:
    public class SomeObject
         private String fieldA;
         private String fieldB;
         private String fieldC;
         private String fieldD;
         private String fieldE;
         //... say 50 declared fields....
         public SomeObject()
         public SomeObject(String fieldA, String fieldB)
              this.fieldA = fieldA;
              this.fieldB = fieldB;
    // getters and setters..     
    }When I create an object using the constructor with only two fields initialized such as the following code above, and look at what is happening to other fields as shown in the code below, I see that they are also AVAILABLE, now this is important, but they are set to null. What I wanted to know was, if I created an object with many fields, as many as 50 (getDeclaredFields = 50), and used a constructor with only two input fields to initialize an object, I still have 48 other fields available but set as NULL's. When I create more than 100,000 of these objects in a list and send to a .jsp page, I am unable to understand if this has more memory load than when you use a list of another object which has actually has only two declared fields in it. Each of this new object will have only two declared fields, when I say getDeclaredFields() it would return 2.
    This is where I am unable to figure out if this has anything to do with performance or memory, rather, what is the difference between the many possible ways you can initialize an object when there are too many fields which you probably won't use? Either create a new constructor with only two input arguments OR a generic constructor with all fields as input arguments but all those fields which you won't use assigned NULL's OR create another new object with only two declared fields
    SomeObject someObj = new SomeObject("abcd","cdef");
              Field[] fields = someObj.getClass().getDeclaredFields();
              System.out.println("Number of available fields: " + fields.length);
              for(int i = 0 ; i < fields.length ; i++)
                   try
                        fields.setAccessible(true);
                        System.out.println("Field " + i + ", with value: " + fields[i].get(someObj));
                        fields[i].get(someObj);
                   } catch (IllegalArgumentException e)
                        e.printStackTrace();
                   } catch (IllegalAccessException e)
                        e.printStackTrace();
              }Edited by: ..-__Kris__-.. on Mar 23, 2008 5:04 PM
    Edited by: ..-__Kris__-.. on Mar 23, 2008 5:05 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Calendar - How can I add an untimed reminder (8900)?

    I have just changed from a Palm Treo to Curve 8900 where I regularly put an untimed reminder at the top of specific dates in my calender. On the Palm I can do this by selecting "no time" when making the entry. Is there a way of doing this on the 8900 (v4.6.1.310)

    I noticed the same problem after I upgrade to OS5.0.   I think there is also the same problem with Contacts.  I tried to add one of them and no plus sign was available.  I was wondering if others were having the same issue.  I am going to try the suggestion above as I have enabled iClould.

  • Outlook calendar problem - can only select PM

    This is probably in the wrong forum so please forgive the error.
    When using the outlook client on my new MacBook Air, I only have the option to select PM for scheduling appointments in the calendar.  I can't select AM when creating the appointment and if I go into preferences in outlook and click on calendar I get the image attached below when I try and set the option for when my day starts and ends.
    It doesn't matter if I use the 24 hour clock or "show AM/PM" in system preferences under "date and time", although I haven't tried changing them and then rebooting the machine.
    This is unique to this machine, as the issue doesn't occur on a windows based desktop logged into the same account in outlook, nor on my iPhone.
    Any suggestions?

    I installed mavericks from a USB and reformatted the hd.  I set up a new user account added email, apple ID  etc and then downloaded new iPhoto and iMovie.  I manually copied documents, music inc itunes library folder and photos from time machine back up.   I also copied original apps only using migration assistant to get idvd and garageband back as despite a lot of searching i couldnt find a way to selectively reinstall original apps not purchased from app store.  Only third party apps are photoshop elements 9 and office 2011.

  • How can I add a member register sign in feature?

    Im hoping to be able to have a member register/ sign in feature for my website
    How can I do this with Muse?! Do they make it easier for doing this?!

    Hi,
    Try some suggestion given in the following thread
    http://forums.adobe.com/message/5553739#5553739

  • Calendar problem can't open appointment  after installing ver 5

    After installing ver 5 the calendar opens without the ability to open new appointments .
    What can I do?
    Adi

    somebody?
    Help?
    adi

  • ITunes-iPod touch problems, can't add music to my iPod

    When I plug in my iPod to the computer and start up iTunes, it says it must be set up when it already is. I've tried reinstalling iTunes, but it still says this very same thing. What's going on ?
    My iOS is 6.1.3 on a 4th gen iPod touch.
    I have 3 cloud backups and 1 iTunes backup available.

    Try restoring your iPod. Restoring will erase the iPod's hard drive, reload the software and put it back to default settings. Once the restore is complete follow the on screen instructions to name the iPod and automatically sync your songs and videos onto the fresh installation. Press Done and the iPod will appear in iTunes and start to sync. If you want to update manually or using selected playlists uncheck the box beside the sync automatically instruction and press Done, it will default to manual mode and you can choose whatever setting you like: Restoring iPod to factory settings with iTunes 7

  • Can't add safari bookmarks on iPad 3.

    Hey folks,
    My iPad 3 is on iOS 6.0.1, recently I've discovered that I'm unable to add bookmarks in safari.  I click on the arrow, select book mark, the little processing symbol appears, but it does not add the bookmark. 
    I've tried turning iCloud safari data off, deleting the data from my iPad then rebooting via home and on/off button.  When it comes back up, the are no bookmarks, I then turned back on safari iCloud data which restores my bookmarks, but it still won't add new bookmarks.
    I've also gone into the settings, deleting cookies, cache and history.  I've added the bookmark bar permanently all to no avail.
    I'm very loathe to restore my iPad.....
    Any ideas?
    Lat

    Yep, I've got all the reported problems can't add bookmarks and I can't edit or delete them either, in fact when I try to edit a bookmark, it just crashes. I've also just noticed that I've got 2 bookmark bars and there's no option to delete them, Bizarrely my iPhone 4 does work fine and is on the same iOS. I can only determine that it is specific to the iPad and there is a fault. Will have to wait or will have to do a full restore.

  • Can't add a family member to family share on icloud?

    I Successfully added one child to family share but when I went to add second child it gets hung up on the screen where you type family members email. I type it in or select child's name from my list of contacts and then select NEXT. Nothing Happens. the blue letters of next fade to the light blue then the circle thing spins and the NEXT pops back up in blue and nothing happens. Can someone please help me figure out why I can't add a second child. Yes, they have an icloud account, I turned phone off and back on. Not sure what the problem is.

    See if you can go to your Calendars App and select a previous event to see what Calendar the event was added to (iCloud or Yahoo). After that is determined you can go to www.iCloud.com or calendar.yahoo.com and add the event there to see if it will populate on your device. Another troubleshooting step is deleting the iCloud account from your device and also deleting the Yahoo account. Then check to see if you can add an event without it syncing to a email. If you can then it may have just been a bug and you can add both accounts back and try adding the event again. I would also recommend only using one service to sync your Contacts, Calendars, Reminders, etc. Such as either iCloud only or Yahoo only, as using multiple accounts means your data is spread around and can be hard to isolate when something goes wrong.

  • A family member gave our kids their old iphone with music already loaded for them.  How do we add the music to our library? It won't transfer purchases from the phone and if I sync it, the music is erased.  Can someone walk me through this?

    A family member gave our kids their old iphone with music already loaded for them.  How do we add the music to our library? It won't transfer purchases from the phone and if I sync it, the music is erased.  Can someone walk me through this?

    No one here will help you violate iTunes terms of service or steal music.

  • Can't add family member to family share

    I can't add my daughter to family share.  When I try to send an invite, it says you can't send an invite to your own account.  She has her own email and apple id.  I had no problems adding my son.

    Hi
    You will need another screen name.
    Free 60day trial(click on free trial on the top) here http://www.apple.com/dotmac/ keep your .mac name after the 60days.
    or free AIM name here https://reg.my.screenname.aol.com/_cqr/registration/initRegistration.psp
    Tony

  • How do I add an invite to share calendars from a family member iPhone 5c?

    How do I add an invitation to share calendars to a family member 5c iPhone?

    Hey toothmoverapple,
    I see that you have some questions about sharing a calendar. Here are two articles that will help you achieve this goal:
    iCloud: Calendar sharing overview
    http://support.apple.com/kb/PH2689
    iCloud: Share a calendar with others
    http://support.apple.com/kb/PH2690
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • Downloaded new ios8, my name is on my husbands iPad with my email and Apple ID. I am the primary for cloud drive. I try to add him as a family member and it says you can't add yourself!

    I Am set up as primary for Apple cloud drive.  my apple I'd comes up in my husbands settings on his iPad. I try to add him in the family section and it says you can't add yourself!  How do I get his apple I'd back to his cloud settings?,
    i downloaded the new software on his iPad and may have put in my Apple id and password!  How do I chabeg this?   Yikes!
    thank you!

    I ran into the same issue.
    Go to "Settings", "iCloud", scroll to the bottom and "sign out"  It will delete everything iCloud related upon your approval (don't worry, everything will remain in the cloud.  Once signed out, in the same settings location (under "Settings", "iCloud") sign in using his Apple ID and Password.
    Hope this helps.

Maybe you are looking for

  • Why wont Google Chrome open and says it wont work with this version of mac os 10

    I just bought a macbook and when I went to instal Google Chrome it told me it isnt compatable with mac os 10

  • Assigning a value to an item

    Hi, I'm using forms6i. I have an item in my form , say, Invoicebase, whose default value to be fetched from another table and to be shown in the form while loading. The query to fetch the default value involves a where condition, like where company =

  • After SAP GUI 7.10 installation IE7 does not work properly

    Hello, After SAP GUI 7.10 installation over WIn Server 2003 Ent. + SP2. When I try to open new link or window with right click in IE7 this process starts but cannot display anything in new window. At the same time link is correct. Could you please he

  • Charting / custom plot chart advice?

    Hi, I'm trying to build a customized chart in Flex that might be a bit over my current skill level so I was hoping I could get a tip how to approach this. Essentially it will be a plot chart with an associated data table. The plot chart will have onl

  • IWeb+Pocast+Godaddy=Question/Frustration

    OK - here is my site... www.shanemontgomery.com If you click on the link "podcast" then the "listen" link the Podcast archive loads up but all I see is a quicktime image with no podcast happening. When I save my iWeb Site to a folder and then view it