How to remove a specific Calendar subscription?

With the upgrade to Mavericks, my U.S. Holiday subscription in Calendar has been duplicated.  So every holiday is shown twice.  I would like to detlete one of them without deleting anything else.
I had to happen for moon phases awhile ago and had to phsically go to eact duplicate entry and delete it.  For some reason I cannot even do that for this situation.

topcop1,
Go to Calendar>Preferences...>General> uncheck "Show Holidays calendar."

Similar Messages

  • HT5373 How do I enable a calendar subscription in my iCloud calendar? I'm using a Windows laptop (Home Office 7) and am trying to get the rugby and footfall fixtures to appear on my iCloud calendar.  Thanks for your help.

    How do I enable a calendar subscription in my iCloud calendar? I'm using a Windows laptop (Home Office 7) and am trying to get the rugby and footfall fixtures to appear on my iCloud calendar.  Thanks for your help.

    I suspect you had the same issue I did and downloaded the 64-bit version of the OpenSC libraries, but your firefox is 32-bit. You can see the opensc-pkcs11.dll in the System32 folder via windows explorer, but when you browse that directory via firefox to add the module, you are acutally being redirected to the SysWOW64 directory. Try intstalling the 32-bit OpenSC libraries, and adding the appropriate library from the C:\Windows\SysWOW64 directory.

  • How do I add Google calendar subscriptions to iPad iCal?

    I was able to add my Google calendar account to iCal on iPad but my calendar subscriptions (delegated) from other users is not displayed. I know there is a wizard to add a subscribed calendar but I don't know how to fill it out:
    Settings> Add Account> Other> Add Subscribed Calendar > Server "myserver.com/cal.ics". Where do I get the information to plug between the quotes?
    Thanks.

    ab1268,
    I'm trying to do this very thing.  I have multiple google calendars set up (one for each kid, my husband etc.).  I want to move to iCal exclusively.  Based on your note above, should I export each individual calendar within ical.  Remove each from the iCal account and then reimport then into ical?  I suppose the risk is low b/c the data still exists in google.
    Please advise - I would hate to misstep.  Very new to the apple world (aside from iphone / ipad).
    Thanks!

  • How to setup a specific calendar in iCal not to sync events from iphone S to other apple devices?

    In iCal, multiple calendars can be setup.  For example,  I have 3 different calendars in iCal.  I would like the events in calendar 1 and 2 to b synced with my Mac Pro, iPhone S and iPad. I do not want the events in calendar 3 to be synced from my iPhone S to the Mac Pro and iPad. How can this be set up?

    Hi ChrisJC,
    To get the specific calendar folder (non-default folder), please refer to this code below:
    Dim oNS As Outlook.NameSpace
    Dim MyItemsFolder As Outlook.MAPIFolder
    Dim myAppoint As Outlook.AppointmentItem
    Set oNS = oApp.GetNamespace("MAPI")
    Set MyItemsFolder = oNS.Folders("[email protected]").Folders.Item("Calendar")
    Then you could add appointment item by using
    Items.Add method.
    Set myAppoint = MyItemsFolder.Items.Add(olAppointmentItem)
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to remove a specific entry from back stack in windows 8.1

    Hi,
    How can i remove a specific back stack entry in windows phone.In windows phone 8 NavigationService.RemoveBackentry() method is used similarly is there any way
    Thanks,
    Punith

    Did you meant Windows Phone 8.1 xaml or silverlight? For silverlight, NavigationService.RemoveBackEntry() is there & for WP8.1 xaml(RT), you can use :
    Frame.BackStack.RemoveAt(Frame.BackStack.Count - 1);
    http://developer.nokia.com/community/wiki/Using_Crypto%2B%2B_library_with_Windows_Phone_8

  • How to open a specific Calendar in Outlook

    Hi,
    I'm struggling to find an example on other forums, or not understanding the code.
    I want to open a non-default calendar in Outlook to create an appointment (it's a hotmail account, which is shared with a couple of people, so that they can all see the same appointment in outlook).
    The account is in the form of "[email protected]".  I've tried 3 different examples I've found on forums and none work.  Here's the code that works for the default calendar, so I'm after the code to open the specific calendar (the
    variable passed as strCalendar).
    Public Function fnCreateOutlookAppointment(strStartDate As String, Optional strEndDate As String, Optional strEventTitle As String, Optional strLocation As String, Optional strDetails As String, Optional intDuration As Integer, Optional strStartTime As String,
    Optional strEmailList As String, Optional strStatus As String, Optional strAction As String, Optional blnAllDay As Boolean, Optional intReminderTime As Integer, Optional strCalendar As String)
        Dim olApp As New outlook.Application
        Dim olAppointment As AppointmentItem
        Dim myRequiredAttendee As outlook.Recipient
        Set olAppointment = olApp.CreateItem(olAppointmentItem)
        If Len(strStartTime) < 1 Then
            strStartTime = "09:00:00"
        End If
        If blnAllDay = Null Then
            blnAllDay = False
        End If
        If Len(strEndDate) < 1 Then
            strEndDate = strStartDate
        End If
        With olAppointment
            .Start = DateValue(strStartDate) + TimeValue(strStartTime)
            .Duration = intDuration
            .Subject = strEventTitle
            .Location = strLocation
            .Body = strDetails
            Select Case strStatus
                Case "Free"
                    .BusyStatus = olFree
                Case Else
                    .BusyStatus = olBusy
            End Select
            Select Case blnAllDay
                Case True
                    .AllDayEvent = True
                Case Else
                    .AllDayEvent = False
            End Select
            .ReminderMinutesBeforeStart = intReminderTime 
            .ReminderSet = True
            If Len(strEmailList) > 0 Then  'only add if email addresses supplied (and using ; as a break e.g. "[email protected];[email protected]"
                Set myRequiredAttendee = .Recipients.Add(strEmailList)
                myRequiredAttendee.Type = olRequired
            End If
            If strAction = "save" Then
                .Save
            Else
                .Display
            End If
        End With
        Set olAppointment = Nothing
        Set olApp = Nothing
    End Function
    _________________________________________________________ Every day is a school day!

    Hi ChrisJC,
    To get the specific calendar folder (non-default folder), please refer to this code below:
    Dim oNS As Outlook.NameSpace
    Dim MyItemsFolder As Outlook.MAPIFolder
    Dim myAppoint As Outlook.AppointmentItem
    Set oNS = oApp.GetNamespace("MAPI")
    Set MyItemsFolder = oNS.Folders("[email protected]").Folders.Item("Calendar")
    Then you could add appointment item by using
    Items.Add method.
    Set myAppoint = MyItemsFolder.Items.Add(olAppointmentItem)
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to cancel duplicate holiday calendar subscriptions

    How to cancel duplicate holiday calendar subscriptions

    Hello leslietrapp,
    Thanks for the question. After reviewing your post, it sounds like you want to delete a calendar. I would recommend that you read this article, it may be able to help you isolate or resolve the issue.
    Calendar: Add or delete a calendar
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • How to remove "Moon Phase Calendar 1.0"?

    I downloaded "Moon Phase Calendar 1.0" from here:
    http://www.apple.com/downloads/macosx/calendars/index_top.html
    It worked perfectly, but the entries take up precious room on my iPhone display.
    How can I remove the moon phase entries from iCal please?

    entro_p,
    Welcome to Apple Discussions.
    Click on the "Moon Phase" Calendar in the "CALENDARS" pane of your iCal window. Then select iCal>Edit>Delete.
    If you imported the "Moon Phase" calendar into an existing calendar, I do not know of an easy way for it to be removed. In that case do you have a backup of your previous calendars? If not, perhaps someone else can help you.
    ;~)

  • How To Remove A Specific Application Name From The "Open With" Dialog

    When you right click on a file you are presented with the "Open With" menu item and you are also presented with a list of applications that could potentially be used to open that file.
    In my case, when I click on a file of type .mov I am presented with the name of an application that I want to remove from the list, because that application ( Miro.app (2.5.2) ) no longer exists on my system.
    What is the best way to remove that application name from the list?

    Ok, but how does one remove some of the applications that are appear in the context menu for a given file type? Is there an asc file which can be edited?
    For example, in my system a PDF can be opened with over 10 applications. I would like to see just the three ones I use: Acrobat, Skim and Preview.
    Thanks in advance.

  • How do you configure a calendar subscription on the iPhone?

    I am unable to add the US Holiday calendar to my iPhone.
    When I try to Add Account to Mail,Contacts,Calendars and select the Other>Add Subscribed Calander then the URL . . .  "http://ical.mac.com/ical/US32Holidays.ics" where the calendar is, I get a pop up window that askes for a login and password.  Without it the subscription  will not authenticate.
    It is not my Apple log/pw so what is it?

    That is correct and indeed what I did.
    Based on your comment and my 2nd try results, it appears that makes a difference!  I'm rather surprised, as I have always experienced just the opposite, where sometimes it was not possible to access a site without the "http://"

  • How to remove/hide specific Worklist Views pane in Out-of-box worklist

    Hello. we are using the Out of the box BPMS worklist, with the Worklist Views pane turned on. You can see which screen I'm talking about at this image:
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/obpm/11g/r1/firstProcess/images/t3s302.gif
    Our client wants the "Past Week", "Past Quarter", "Past Month", and other views removed or hidden.
    Does anyone have experience with modifying this list? And if so, how did you implement it? Or how would you approach doing so? Again, we're using the out-of-the-box implementation inside a WebCenter Spaces Process Spaces workspace. Would we be able to add ADF through a PageStyle or PageTemplate without changing the source code.
    Suggestions would be greatly appreciated. We want to keep the customizations to a minimum, you see.
    Thank you.

    Hi,
    I don't think supressing through Global Personalization will change the business logic. Within the Business Logic it checks for the mandatory field.
    After the changes I guess you need to make the changes accordingly.
    The below link might be of some help.
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?spaceKey=profile&title=ESSPersonalInformationUIenhancementwithoutmodification&decorator=printable
    Please correct if I am wrong.
    Cheers-
    Pramod

  • How to remove a specific app in purchase in app store

    I want to remove an app, so that it cant be redownload without my apple password.

    You can hide an app via your computer's iTunes, that should stop it appearing in the Purchased tab : http://support.apple.com/kb/HT4919
    You can also set Settings > General > Restrictions > Require Password to 'Immediately', that will mean that you have to enter your password for every download (including app updates) - the default is a 15 minute period during which it doesn't need re-entering.

  • How to remove a specific audio track?

    Hello,
    My wife and I were recently driving around in a convertible.
    She recorded video of our drive on her iPhone.
    When the iPhone was in the car (ie: behind the windshield), you can hear the music and the sound of the car perfectly.
    However, occasionally she would put the iPhone up above the windshield for an unobstructed view, but the wind whipping by the iPhone's mic is blisteringly loud and annoying.
    Is there any way to delete JUST the wind noise from the audio track (either in iMovie, or Garage Band, or any other program anybody knows of)?
    I know that software exists that will break down an audio track into it's individual components, I just don't know which ones are the best.
    Any help would be greatly appreciated.
    Thanks,
    Justin

    Hi
    Is there any way to delete JUST the wind noise from the audio track (either in iMovie, or Garage Band, or any other program anybody knows of)?
    No - some minimal enhancements can be done but way to little to be of any use.
    • Equalizer in Garageband
    • SoundSoap™
    But still that will not make any noticeable difference. Sorry
    I know that software exists that will break down an audio track into it's individual components, I just don't know which ones are the best.
    Then You know more than me.
    I know the theory of "Field-Vector-Analysis" but never seen any program that apply it and if they are in real world then
    • Costs will be astronomical
    • Need of computing power - wild guess x-thousand Macs connected as a Beowulf-cluster
    • Competence to use it - talking about steep learning curve
    Hear-say talks about an application "Virtual Microphone" - but I can't find it to test anywhere.
    So - do as the Pros - dubbing - silence original and make/use a fake audio file instead.
    Yours Bengt W

  • How to remove a dispatcher with a specific index (conf_indx)

    Hi,
    A few details:
    We are on 11.2.0.3 linux 64bit.
    We use both dedicated and shared connection.
    We have many environments (an environment consists of many schemas) in a single DB.
    For each environment we create at least one service (we know # of services is limited to ~150 in 11.2) - in example for environment with suffix LAB1 we create a service called DB_LAB1
    in example:
    exec dbms_service.create_service('DB_LAB1','DB_LAB1');
    exec dbms_service.start_service('DB_LAB1');
    For clients to be able to connect to the service_name using shared mode - we also create a dispatcher per environment - serving that specific service -
    in example:
    alter system set dispatchers='(index=30)(protocol=tcp)(service=DB_LAB1)(dispatchers=1)'
    I have a few environments which I would like to remove - including their services and dispatchers.
    removing the services is easy using dbms_service - however I did not find a way to remove/delete a dispatcher with a specific index.
    Say I have conf_indx 1..50 used and I would like to remove conf_indx=30 (the one which I created above) - how can I do that?
    Stopping the dispatcher process (Dxxx) does not remove the row from v$dispatcher_config - it only shows that the number of dispatchers for that row is 0.
    Bottom line - how to remove a specific dispatcher with a specific dispatcher-index - without affecting all the other dispatchers which I would like to preserve?
    Thanks.
    Mor

    Ok, but how does one remove some of the applications that are appear in the context menu for a given file type? Is there an asc file which can be edited?
    For example, in my system a PDF can be opened with over 10 applications. I would like to see just the three ones I use: Acrobat, Skim and Preview.
    Thanks in advance.

  • Selling my 820 - how to remove the music subscript...

    Hi, I'll be selling my Lumia 820 to buy a new 925. The Q I have is how to remove the unloimited music subscription from my 820 so that the buyer can then associate it with his own Nokia account?

    Hi Mohitchand,
    Welcome to Nokia Discussions!
    For your query, please refer to this thread.
    If you need more assistance regarding your Nokia Music account you may contact Nokia Support at www.nokia.com/support
    Good luck

Maybe you are looking for