HT2513 Why does Calendar (iCloud) always change the colour of my Work calendar?

Calendar allows me to set the colour, but next time I am back to check my calendar, the colour has changed.  This happens on both my Mac and iCloud calendars.  I also susbcribe to a Google set of calendars.  Thanks.

Hello;
To be honest with you, I've never heard of such thing.
Since the board you are using is an analog output board, it contaims only output channels, therefore, only analog output program samples will work with it.
You shouldn't have to worry about any extra configuration of the DACs.
Regards
Filipe A.
Applications Engineer
National Instruments

Similar Messages

  • Why does "theme" doesn't change the fonts?

    I have imported a powerpoint presentation, yet when I choose a specific theme, it only changes the background and not the fonts. Do you know why? What can I do to fix it? Is there any easy way to replace all fonts and colors?
    Thank you!

    You should also ask this in the MacBook Pro forum. This is the forum for the 13” white and black plastic MacBooks that were discontinued in 2010 and didn't have the illuminated keyboard. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/notebooks/macbook_pro

  • Why does my IN operator change the datatype

    Hi
    This doesn't make any sense, but i'm hoping there's an obvious answer which you guys have seen a million times before.
    I have this criteria in my WHERE clause
    AND rpg_id = (SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))because of this clause no results are return in my query. However if i use a to_number function like this:
    AND rpg_id = to_number(SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))OR
    AND to_char(rpg_id) = (SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))i get the expected results returned.
    The sub query:-
    SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34)returns the value 226. rpg_id in this table is a NUMBER datatype. As is rpg_id in the original outer query.
    I looked at synonyms, views, and other objects it might be using for the rep_elig_groups table, but there are none.
    Then i tried changing the IN operator for an EQUALS operator and would you believe it, it worked.
    AND rpg_id = (SELECT rpg_id
                                             FROM integration.rep_elig_groups
                                            WHERE pel_id IN(34))can someone please explain what ORACLE is thinking here!!!
    Many thanks
    Edited by: tri_harder on Dec 9, 2008 4:48 PM missed the closing bracket in the final piece of code!
    Edited by: tri_harder on Dec 10, 2008 8:44 AM

    I ran the expain plans in TOAD for both queries, with the only difference changing the operator from IN to =. I'm very surprised there is such a difference between the two!!
    SELECT   tim_id,
                  rpg_id,
                                 ROUND(SUM(retail_value), 2) retail_value,
                                 ROUND(SUM(salesidx), 2) salesidx,
                                 ROUND(SUM(VALUE), 2) VALUE,
                                 ROUND(SUM(bva_salesidx), 2) bva_salesidx,
                                 ROUND(SUM(bva_value), 2) bva_value,
                                 ROUND(SUM(bva_retail_value), 2) bva_retail_value
                            FROM ms_stats_ol_ms
                           WHERE 1 = 1
                             AND fmt_id IN(SELECT ID
                                             FROM formats
                                            WHERE car_id = 0 OR 0 = 0)
                             AND fmt_id NOT IN(
                                   SELECT fmt.ID
                                     FROM formats fmt,
                                          class_formats clf
                                    WHERE fmt.ID = clf.fmt_id
                                      AND clf.cla_id IN(3, 6)
                                      AND fmt.car_id = 2)
                             AND cla_id = 3
                             AND rpg_id = (SELECT rpg_id
                                             FROM rep_elig_groups
                                            WHERE pel_id IN(34))
                             AND tim_id BETWEEN 4985 AND 5418
                        GROUP BY tim_id, rpg_idSo this is my original query that returned no results and produced the following Explain Plan:-
    Plan
    SELECT STATEMENT  ALL_ROWSCost: 10,842  Bytes: 1,505  Cardinality: 35                                          
         17 HASH GROUP BY  Cost: 10,842  Bytes: 1,505  Cardinality: 35                                     
              16 HASH JOIN  Cost: 10,836  Bytes: 1,587,345  Cardinality: 36,915                                
                   1 TABLE ACCESS FULL TABLE INTEGRATION.FORMATS Cost: 2  Bytes: 90  Cardinality: 15                           
                   15 HASH JOIN RIGHT ANTI  Cost: 10,833  Bytes: 1,456,912  Cardinality: 39,376                           
                        6 VIEW VIEW SYS.VW_NSO_1 Cost: 4  Bytes: 6  Cardinality: 2                      
                             5 HASH JOIN  Cost: 4  Bytes: 24  Cardinality: 2                 
                                  2 TABLE ACCESS FULL TABLE INTEGRATION.FORMATS Cost: 2  Bytes: 12  Cardinality: 2            
                                  4 INLIST ITERATOR            
                                       3 INDEX RANGE SCAN INDEX (UNIQUE) INTEGRATION.CLF_PK Cost: 1  Bytes: 60  Cardinality: 10       
                        14 TABLE ACCESS BY INDEX ROWID TABLE CHARTDEV.MS_STATS_OL_MS Cost: 10,829  Bytes: 1,530,034  Cardinality: 45,001                      
                             13 BITMAP CONVERSION TO ROWIDS                 
                                  12 BITMAP AND            
                                       8 BITMAP INDEX SINGLE VALUE INDEX (BITMAP) CHARTDEV.MSST_OL_MS_RPG_ID_I      
                                            7 INDEX FAST FULL SCAN INDEX (UNIQUE) INTEGRATION.REG_PK Cost: 2  Bytes: 6  Cardinality: 1 
                                       10 BITMAP MERGE       
                                            9 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_TIM_ID_I
                                       11 BITMAP INDEX SINGLE VALUE INDEX (BITMAP) CHARTDEV.MSST_OL_MS_CLA_ID_I      The following script has the very small change of the operator changed from IN to =
    SELECT   tim_id,
                  rpg_id,
                                 ROUND(SUM(retail_value), 2) retail_value,
                                 ROUND(SUM(salesidx), 2) salesidx,
                                 ROUND(SUM(VALUE), 2) VALUE,
                                 ROUND(SUM(bva_salesidx), 2) bva_salesidx,
                                 ROUND(SUM(bva_value), 2) bva_value,
                                 ROUND(SUM(bva_retail_value), 2) bva_retail_value
                            FROM ms_stats_ol_ms
                           WHERE 1 = 1
                             AND fmt_id IN(SELECT ID
                                             FROM formats
                                            WHERE car_id = 0 OR 0 = 0)
                             AND fmt_id NOT IN(
                                   SELECT fmt.ID
                                     FROM formats fmt,
                                          class_formats clf
                                    WHERE fmt.ID = clf.fmt_id
                                      AND clf.cla_id IN(3, 6)
                                      AND fmt.car_id = 2)
                             AND cla_id = 3
                             AND rpg_id IN (SELECT rpg_id
                                             FROM rep_elig_groups
                                            WHERE pel_id IN(34))
                             AND tim_id BETWEEN 4985 AND 5418
                        GROUP BY tim_id, rpg_idAnd this returned the expected results and produced the following Explain plan:-
    Plan
    SELECT STATEMENT  ALL_ROWSCost: 10,996  Bytes: 1,610  Cardinality: 35                                                    
         30 TEMP TABLE TRANSFORMATION                                               
              10 LOAD AS SELECT SYS.SYS_TEMP_0FD9D6614_166B4444                                         
                   9 MERGE JOIN CARTESIAN  Cost: 6  Bytes: 570  Cardinality: 30                                     
                        5 VIEW VIEW SYS.VW_NSO_1 Cost: 4  Bytes: 26  Cardinality: 2                                
                             4 HASH JOIN  Cost: 4  Bytes: 24  Cardinality: 2                           
                                  1 TABLE ACCESS FULL TABLE INTEGRATION.FORMATS Cost: 2  Bytes: 12  Cardinality: 2                      
                                  3 INLIST ITERATOR                      
                                       2 INDEX RANGE SCAN INDEX (UNIQUE) INTEGRATION.CLF_PK Cost: 1  Bytes: 60  Cardinality: 10                 
                        8 BUFFER SORT  Cost: 6  Bytes: 90  Cardinality: 15                                
                             7 TABLE ACCESS BY INDEX ROWID TABLE INTEGRATION.FORMATS Cost: 1  Bytes: 90  Cardinality: 15                           
                                  6 INDEX UNIQUE SCAN INDEX (UNIQUE) INTEGRATION.FMT_PK Cost: 0  Cardinality: 1                      
              29 HASH GROUP BY  Cost: 10,990  Bytes: 1,610  Cardinality: 35                                          
                   28 HASH JOIN  Cost: 10,989  Bytes: 4,600  Cardinality: 100                                     
                        11 TABLE ACCESS FULL TABLE (TEMP) SYS.SYS_TEMP_0FD9D6614_166B4444 Cost: 2  Bytes: 180  Cardinality: 30                                
                        27 HASH JOIN RIGHT SEMI  Cost: 10,987  Bytes: 34,280  Cardinality: 857                                
                             12 INDEX FAST FULL SCAN INDEX (UNIQUE) INTEGRATION.REG_PK Cost: 2  Bytes: 6  Cardinality: 1                           
                             26 TABLE ACCESS BY INDEX ROWID TABLE CHARTDEV.MS_STATS_OL_MS Cost: 10,984  Bytes: 1,310,574  Cardinality: 38,546                           
                                  25 BITMAP CONVERSION TO ROWIDS                      
                                       24 BITMAP AND                 
                                            16 BITMAP MERGE            
                                                 15 BITMAP KEY ITERATION       
                                                      13 INDEX FAST FULL SCAN INDEX (UNIQUE) INTEGRATION.REG_PK Cost: 2  Bytes: 6  Cardinality: 1 
                                                      14 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_RPG_ID_I
                                            18 BITMAP MERGE            
                                                 17 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_TIM_ID_I      
                                            22 BITMAP MERGE            
                                                 21 BITMAP KEY ITERATION       
                                                      19 TABLE ACCESS FULL TABLE (TEMP) SYS.SYS_TEMP_0FD9D6614_166B4444 Cost: 2  Bytes: 13  Cardinality: 1 
                                                      20 BITMAP INDEX RANGE SCAN INDEX (BITMAP) CHARTDEV.MSST_OL_MS_FMT_ID_I
                                            23 BITMAP INDEX SINGLE VALUE INDEX (BITMAP) CHARTDEV.MSST_OL_MS_CLA_ID_I           Can anybody suggest what's going on?? Why do i get results with one and not the other!!
    Edited by: tri_harder on Dec 10, 2008 10:00 AM
    altered the first query to change the IN operator to =

  • Why does Ical want to change the original dates to 2001 when syncing from my iPhone?

    Hi I was wondering if anyone could help with this as its driving me up the wall
    over the last few weeks I upgraded to Lion running 10.7.1 and until then my Iphone synced everything fine without any problems I have an Iphone 3G running 4.2.1 and when I sync now I get the Ical sync alert saying that more than 25% of my calender events will change on my computer.
    When I look nothing has changed accept the origianl date which is 1/1/2001 for anything that is being taken off my phone onto Ical and also for anything that is already on Ical, I keep telling it to sync later but everything I try it always comes up the same.
    I asked during the week in at the Apple store but was adviced that this problem had not been heard of before and to book both my phone an macbook in for a genius bar appointment.
    Anyone else come accross this problem or is it just myself?
    Kind regards Andy ;0)

    Anyone able to help with this problem at all its still doing my head in ;0(

  • Why does my voice effect change the way my music sounds too?

    I have an instrumental track that I was recording my voice over and I put my vocals in the Mouse Effect. When I played it back my music was in the mouse effect too. How can I just have my voice in Mouse effect and my music with no effect when I record? It says no effect on the music track, but it still sounds like a mouse.

    No. I notice that it only happens when I split the track. I wanted the music to start at a certain point so I split it so it would start in the middle.

  • Why does my music control on the lock screen not working?

    When My phone is locked and I want to control my music that is playing, nothing happens. The play button is showing and the song that I am already listening to is not showing up. I can not skip forward or go back. I have powered off the phone and it is still doing the same thing. Somtimes the double click of the home button does the same thing, but it is more concerning for the lock screen control.
    I just saw this issue come up with the New iOS6 download.
    Help?

    There is corrupted data or settings on your phone.
    Try as needed:
    1. Settings > General > Reset > Reset All Settings
    2. Restore iOS using iTunes, also restoring a backup
    3. Restore iOS using iTunes as a new phone .
    iTunes: Restoring iOS software

  • Why does my icloud calendar have Japanese AND English writing in it? Did I miss a setting I have to change?

    Why does my icloud calendar have Japanese AND English writing in it? Did I miss a setting I have to change? 

    Found a solution form an other post.
    I hade to stop the sync to my iPad to delete the calendars on it.
    Then I synced again and only had the new calendars that I had in my ICal.

  • TS3999 When using iCloud Calendar, I am unable to change the color of my work calendar. I have successfully followed the instructions to reset the colors of other calendars as desired. However, this one calendar always defaults to purple.  Help!

    When using iCloud Calendar, I am unable to change the color of my work calendar. I have successfully followed the instructions to reset the colors of other calendars as desired. However, this one calendar always defaults to purple.  Help!

    File>New Calendar to create a new calendar (Groups are for grouping calendars and I should ignore them). When you've created the calendar, control-click on it in the sidebar and choose 'Get Info' There you can select a colour. You can have as many calendars as you like. When you create a new event you can select the calendar it belongs to, and hence the colour it has.

  • Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exact

    Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exactly same word file on exporting it from its pdf counterpart?

    I was testing the preciseness & efficiency of Adobe acrobat x professional's doc conversion capabilities. As i have to take a document editing project in future which is going to need lot of pdf to word and vice versa conversions . What I did was I created a test word document converted into a pdf using a pdf maker in my word 2007 , Acrobat did convert the document from word to pdf keeping everything in the source file intact , However when i tried the other way round and attempted to convert the same pdf to word 2007 file format I lost my formatting ?So the font that I used to create the pdf are the ones taken from word 2007 which i believe is using the fonts that are installed in my computer. Any suggestions on how to preserve the formatting of the document after converting it from pdf to word file format?
    Regards
    Mike

  • Why if my iCloud info is the same as my iTunes login and password does it say the account name or password is incorrect when trying to log in

    Why if my icloud info is the same as my itunes login and password does it say the account name or password is incorrect

    Oops
    Forget that, wrong forum.

  • HT4623 Hi why does my itunes always say "error contacting server" when i update my iPhone 5 with the iOs 6.1.3 update

    Hi why does my itunes always say "error contacting server" when i update my iPhone 5 (iOs 6.0.2) with the iOs 6.1.3 update?

    Hey Tigergirl17,
    Thanks for the question. If you haven't already done so, you may want to update iTunes to v11.1 (released on Sept 18th). After updating iTunes, you can then update your iPhone 5 to iOS 7.
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    Thanks,
    Matt M.

  • Why does Calendar keep reverting from full screen each time I exit the app?

    I'm using a 2014 Macbook Air. It's running Yosemite.
    Why does Calendar keep reverting from full screen each time I exit the app?
    On my older Macbook at work, calendar stays full screen whether I exit the app or restart the computer (similar to Mail - which is staying in full screen on both computers).
    Please help me adjust settings so I don't have to keep putting Calendar into full screen.
    Thanks!

    HI Thanks so much! It fixed porblem (for the moment) by reinstalling PS6 and NOT installing the 13.03 update which, although said it was performance related, probaly had  that trial messge embeded in it. So just DON"T install update 13.03 till adobe gets it's sea legs and stops puking up this message over and over. aloha, U
    Curt Y wrote:
    Did you update recently?  There is a bug in that causing your problelm.  See this thread.  http://forums.adobe.com/thread/1114727?tstart=0

  • Why does installation not start after the message "setup wants to make changes"?

    Why does installation not start after the message "Setup wants to make changes.  Type your password to allow this"?

    Hi
    It wants your system's admin password. Standard procedure on Mac for non-admin users
    Thanks

  • Why does App Store always crash when I try to open the appliction?

    Why does App Store always crash when I try to open the appliction?

    You don't have the typical symptoms that I associate the following issue with (normally the error kicks in just when folks visit the Store), but just in case try gn_id's suggestion from the following post:
    Re: iTunes 11 crashes when opening the store - no error message

  • HT1689 Why does my ipad always says CANNOT CONNECT TO ITUNES STORE even when i got all the internet connections needed?

    Why does my ipad always says CANNOT CONNECT TO ITUNES STORE even when i got all the internet connections needed?

    Check to make sure you don't have your restrictions turned on, which may be preventing your access to iTunes.
    Tap on the settings icon, then tap General, then check to see if you have restrictions turned to ON.  If so turn it off.

Maybe you are looking for