24 hour clock and day's date

1. How do I change the clock time showing in top RH corner of my screen to a 24 hour clock in that spot?
2. How do I add the day's date next to the time in top RH corner of screen?

1) Click on the clock; Select Open Date & Time; Then Click on the Clock Tab and select 24-Hour Time
2) The only means to do this I could find are these:
http://paulstamatiou.com/2006/06/11/how-to-display-date-in-os-x-menu-bar
**edit**
Though in Leopard, i think the process has changed a bit.
You goto System Preferences; Then click on International; Then the Formats Tab; Then Click Customize next to the Date section
hope these help!!
Message was edited by: Frank Einstein

Similar Messages

  • Acrobat Pro XI transposes numbers for month and day in dates when saving optimized pdf to Excel spreadsheet.

    Using Adobe Acrobat Pro XI and Excel 14.3.8 on a mac. 
    Saved PDF as "optimized PDF" then "save as other" > spreadsheet > Microsoft Excel Workbook.
    Problem: numbers in some random dates are  transposed so that month and day are reversed.  No particular pattern to these errors.  Only fix we've found is to go through and manually check and correct the date errors - there are hundreds of these errors in the document so this is not a good solution.
    (Note: Excel columns with dates are specified as "date" fields. All dates are formatted as m/d/yy)
    Any ideas what's causing this problem problem and how to fix it? 
    Thanks in advance!

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • Months and days between dates

    What is the formula to find the months and days between dates

    Tricky... The first problem is the intended result. Months have a varying number of days in them, days and weeks have set values. For example the difference between 1st July and 1st September is 2 months but this does not give an accurate count of the number of days (61).
    It would be better to calculate the number of days difference and forget the months.
    You would need a lookup table showing a numeric value for each date that would show each date with a day value from a starting point. If your earliest date is 01/01/2000 then that would be day zero. Then using the lookup table calculate the day value for your beginning and end dates. Subtract one from the other to get the number of days.
    If all your dates are from this year:
    You can create your own Cell Format (call it day of the year) Select the Type: Date & Time
    drag the icon for Day of Year into the box and delete the others.
    Convert your dates to this new Format, subtract one value from the other to get the number of days difference.

  • Can I access the my PC's clock and change the date/time?

    I'm new to Java programming and I wanted to write a program that would set my computer's date as I wanted. But I don't know what class and methods to use and I didn't find anything in the Java API Specification. Please help me.
    Thank you

    I don't think you can do this with java. I think the only way to do this is to drop out of java via JNI.

  • 24 Hour Clock on iCal

    My Time/Date Preferences on system preferences are set to the 24 hour clock and I thought that this flowed through to my iCal times. My times on iCal are now AM/PM. Is there a way to get it back to the other clock?

    Well, this setting is in the International area of the system preferences but rather than setting your region to your local area, you need to customize how the time is displayed.
    Zeb

  • My daughter's phone racks up data usage every 12 hours, twice a day, even though she isn't using it. Anybody know why this would be happening or how to track it/stop it?

    My daughter's phone racks up data usage every 12 hours, twice a day, even though she isn't using it. Anybody know why this would be happening or how to track it/stop it?

        Its all good, TimN8128! Mrhelper is corret with regards to making sure that mobile data is turned off when on WiFi or when not connected to WiFi, if you do not want the phone to access data services to update or refresh app services. These applications can all be configured by going to Settings and reviewing all apps that appear in that area. You can also configure a bit further by going to Settings>Cellular.
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • 9402 DAQmx C: Write Clock and Data on two diferrent lines.

    I am working with NI 9402 (4 I/O lines) and coding with DAQmx c (I AM NOT USING LABVIEW).
    I am trying to output the the data signal by port0/line1. Period required of each bit: 1us.(1 MHz)
    At the same time I am trying to output the clock signal by port0/line0. Period of each bit: 0,5us (2 MHz).
    For that purpose I have tried to write the data on port0/line1 with DAQmxWriteDigitalLines() and use the function DAQmxCfgBurstHandshakingTimingExportClock() to export the clock to port0/line0. 
    DAQmxWriteDigitalLines(taskData,DATA_SIZE,1,30.0,DAQmx_Val_GroupByChannel,data,NULL,NULL));
    DAQmxCfgBurstHandshakingTimingExportClock(taskData,DAQmx_Val_ContSamps,2000000,1000.0,"cDAQ1Mod1/port0/line0",DAQmx_Val_ActiveHigh,DAQmx_Val_Low,DAQmx_Val_ActiveHigh));
    When exectuing I get this error message:
    DAQmx Error: Requested value is not a supported value for this property. The property value may be invalid because it conflicts with another property.
    Property: DAQmx_SampTimingType
    Requested Value: DAQmx_Val_BurstHandshake
    You Can Select: DAQmx_Val_SampClk, DAQmx_Val_OnDemand
    Task Name: taskData
    Status Code: ­200077
    I guess that this mean that function DAQmxCfgBurstHandshakingTimingExportClock  is not supported on NI 9402..
    As I have not been able to solve this problemI decided to use DAQmxCfgSampClkTiming() instead of DAQmxCfgBurstHandshakingTimingExportClock().
    Since I will be using a SampClkTiming function I have created 2 separate tasks, with different clock rates for each one, and try to write separately the clock and the
    data arrays in line0 and line1.
    I am having troubles when I try to write both lines at the same time, this is the important part of the code I am using:
    TaskHandle  taskData=0,taskClock=0;
                  // DAQmx Configure Code
                  DAQmxErrChk (DAQmxCreateTask("taskData",&taskData));
                  DAQmxErrChk (DAQmxCreateTask("taskClock",&taskClock));
                  DAQmxErrChk (DAQmxCreateDOChan(taskClock,"cDAQ1Mod1/port0/line0","clkOut",DAQmx_Val_ChanPerLine));
                  DAQmxErrChk (DAQmxCreateDOChan(taskData,"cDAQ1Mod1/port0/line1","",DAQmx_Val_ChanPerLine));
                  DAQmxErrChk (DAQmxCfgSampClkTiming(taskData,NULL,1000000.0,DAQmx_Val_Rising,DAQmx_Val_FiniteSamps,DAQmx_Val_ContSamps)); //to define the 1 micro secnd Time of bit.
                  DAQmxErrChk (DAQmxCfgSampClkTiming(taskClock,NULL,2000000.0,DAQmx_Val_Rising,DAQmx_Val_FiniteSamps,DAQmx_Val_ContSamps));
    //2000000 because I want the clock array to be sent twice faster than the data array
                  // Set data & clock Arrays
    Define the clock array:             
                  for(i=0;i<1000;i++)              {clockD[i]=i%2;} /'1' and '0'
    Define data array:             
                  for(i=0;i<1000;i++)              {data[i]=1;} // or whatever random values..
                  // Write digital lines
    while(1)              {
                                DAQmxErrChk (DAQmxWriteDigitalLines(taskData,1000,1,30.0,DAQmx_Val_GroupByChannel,data,NULL,NULL));
                                DAQmxErrChk (DAQmxWriteDigitalLines(taskClock,1000,1,30.0,DAQmx_Val_GroupByChannel,clockD,NULL,NULL));
    After executing this code I get the error:
    DAQmx Error: NI Platform Services:  The specified resource is reserved. The operation could not be completed as specified.
    Task Name: taskClock
    Status Code: ­50103
    Nevertheless, If I just  use one of the DAQmxWriteDigitalLines function, the program works fine, and it send out the information ).
    By the way I noticed that if I Write a digital line in a for loop instead of while(1), if the number of iterations of the for loop is low (i.e. 10), I get the same error even if I just write call the DAQmxWriteDigitalLines() function once.
    Could these two errors be related ?
    To sum up:
    Could anyone give me a clue how two output a data signal and a clock signal  to 2 different ports with different clock rates for each signal ?
    Thank you very much

    One quick question about how you setup your timing:
    Spoiler (Highlight to read)
    DAQmxErrChk (DAQmxCfgSampClkTiming(taskData,NULL,1000000.0,DAQmx_Val_Rising,DAQmx_Val_FiniteSamps,DAQmx_Val_ContSamps));
    DAQmxErrChk (DAQmxCfgSampClkTiming(taskData,NULL,1000000.0,DAQmx_Val_Rising,DAQmx_Val_FiniteSamps,DAQmx_Val_ContSamps));
    If you are only going to write 1000 finite samples, then why are you specifying the number of samples to write here as "DAQmx_Val_ContSamps" and not 1000? See: Sample Clock Timing Reference
    Also, I gather what you are trying to do is output the DO task's sample clock on line0, at the same time that the DO task is running. If that's true, you should be able to export your sample clock using the export signal function. See: Export Signal Reference
    Hope this helps.

  • Why do my 5c and 5s use data when I am on WiFi? And why does it show up in regular intervals of 6 hours? Very strange.

    I am really having problem controlling the data usage. It seems that iPhone 5c and 5s both use data when wifi is available. And plus, the data seems to be dumped all at once every 6 hours most of the time. I know I am neither uploading nor downloading 140MB over data at 7am. DOes anyone know how to control this?
    I switched off almost all background data usage (except messages). I am not on facebook etc. What is going on?

        Thanks for trying Jay's suggestion, zole. The iPhone should still be able to use WiFi to send and receive iMessages. By design though, Apple devices will turn off WiFi when the phone goes dormant (screen turns off) so if you are in the midst of downloading something or a new message comes in, the phone will be using the available mobile data by default.  You can turn cellular data on or off for individual applications http://vz.to/1IuZJIM instead of completely shutting off the cellular data. In that same section, you can see what applications may be using more cellular data than others to go into that specific app for settings (for example, if Facebook is using a lot of data, go into the application's settings and make sure the video autoplay is turned to WiFi only).
    JenniferH_VZW
    Follow us on Twitter www.twitter.com/vzwsupport

  • I pre-ordered an iPhone 6 Plus and the delivery date now says October 14th. The point of the pre-order is to get it on release day (or shortly thereafter). Can I go to a Verizon store to pick up my new phone on release day?

    I pre-ordered an iPhone 6 Plus and the delivery date now says October 14th. The point of the pre-order is to get it on release day (or shortly thereafter). Can I go to a Verizon store to pick up my new phone on release day?

    I'm not sure that answers the question Candice.
    I'm in the same situation.  I was up trying to get on the Verizon page at 11:55, kept getting the ECPD error.  When finally got through, the Silver Iphone Plus 64 showed arrival of 9-19.  At every step of the process, it seemed that I was ordering a phone that would arrive on day1.  At no point did it say this was an estimate.  At no point did it say it might change.  In a big yellow box, it said "9-19".  Ordered it, then got confirmation email stating it should arrive at 9-19.   Seems like all should be good, right?  Order site said 9-19, I've got a confirmation email saying 9-19, done and done.
    Then I check the website, and suddenly it changed to 10-14?!?!?!?  I feel like this was a bait and switch.  I was able to pickup an iphone5 in a local store on launch day, and would not have locked myself into a preorder through Verizon if I had known this would happen!
    So, that leads back to the original questions.  Lets assume I walk into a Verizon store on 9-19, and there is an available iphone6 plus just sitting there, can I either get that phone as fulfillment of my pre-order.  Or, cancel my pre-order and buy that phone right then and there?
    JJK
    PS:  It seems there are many people you misled this way.  For every person who takes the time to post on this site, there are going to be many many more who are silently ****** off.

  • How to derive date from given month, year and day?

    Hi all,
    I have a doubt in date function. I need to create a date from the given month, year and day. How can i do it?

    consider this example
    REPORT zconvertdate001 .
    TYPES : BEGIN OF tt_date_in,
            day(2),
            sep1,
            month(3),
            sep2,
            year(4),
            END OF tt_date_in.
    DATA : wa_date_in TYPE tt_date_in VALUE '07-Jul-2006'.
    TYPES : BEGIN OF tt_date_out,
            day(2),
            month(2),
            year(4),
            END OF tt_date_out.
    DATA : wa_date_out TYPE tt_date_out.
    TRANSLATE wa_date_in-month TO UPPER CASE.
    SELECT SINGLE mnr
    INTO wa_date_out-month
    FROM t247
    WHERE spras EQ sy-langu
    AND   ktx EQ wa_date_in-month.
    CONCATENATE wa_date_in-year wa_date_out-month wa_date_in-day
           INTO wa_date_out.
    WRITE : / ' Date in:', wa_date_in,
            / 'Date out:', wa_date_out.

  • I need to make space on my Mac. If I copy a folder from iPhoto on to a hard drive, then delete it from iphoto then import it again, does it retain all my editing? It does not seem to retain Faces info and I have spent hours and days naming people :(

    I need to make space on my Mac. If I copy a folder from iPhoto on to a hard drive, then delete it from iphoto then import it again, does it retain all my editing? It does not seem to retain Faces info and I have spent hours and days naming people

    There is no way to export Faces information.
    I'm not sure why you would do this:
    If I copy a folder from iPhoto on to a hard drive, then delete it from iphoto then import it again,
    If space is an issue then move the whole Library to an external drive:
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • I performed a time machine backup without plugging my labtop into a power source. My computer died and all the settings were changed, ie the clock and date were changed back to 2001. So I tried to restore my computer using a previous time machine backup.

    I performed a time machine backup without plugging my labtop into a power source. My computer died and all the settings were changed, ie the clock and date were changed back to 2001. So I tried to restore my computer using a previous time machine backup. (which I now know was wrong). However, when time machine tried to restore it said there was not enough room to do a backup. It seems that it did a half backup because some essential  files such as system profiler are now missing. Can I undo this restore...? What can I do to fix this

    You need to do a full system restore, per Time Machine - Frequently Asked Question #14.
    If that sends a message, please note the exact wording.

  • Using a checkbox in numbers- if,then, I want to display today's date if checked, and keep that date, the day it was checked, not the current day

    Using a checkbox in numbers- if,then, I want to display today's date if checked, and keep that date, the day it was checked, not the current day

    this will not work.  Numbers does not provide a timestamp.  you can, however, enter the formula "=now()" in any cell, then copy that same cell, then paste (using the command "Edit > Paste Formula Results"
    If you need a time stamp often,
    make a single cell table with the formula (mentioned earlier).
    and copy and paste as needed

  • How to get the difference of two dates in years,months and days

    Hi friends,
    how to get the difference of two dates in years,months and days
    for ex 2 years 3 months 13 days
    select (sysdate-date_Start) from per_periods_of_service
    thanks

    Something like this...
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select to_date('17-nov-2006','dd-mon-yyyy') as c_start_date, to_date('21-jan-2008','dd-mon-yyyy') as c_end_date from dual union all
      2             select to_date('21-nov-2006','dd-mon-yyyy'), to_date('17-feb-2008','dd-mon-yyyy') from dual union all
      3             select to_date('21-jun-2006','dd-mon-yyyy'), to_date('17-jul-2008','dd-mon-yyyy') from dual
      4             )
      5  -- end of test data
      6  select c_start_date, c_end_date
      7        ,trunc(months_between(c_end_date, c_start_date) / 12) as yrs
      8        ,trunc(mod(months_between(c_end_date, c_start_date), 12)) as mnths
      9        ,trunc(c_end_date - add_months(c_start_date, trunc(months_between(c_end_date, c_start_date)))) as dys
    10* from t
    SQL> /
    C_START_D C_END_DAT        YRS      MNTHS        DYS
    17-NOV-06 21-JAN-08          1          2          4
    21-NOV-06 17-FEB-08          1          2         27
    21-JUN-06 17-JUL-08          2          0         26
    SQL>But, don't forget that different months have different numbers of days, and leap years can effect it too.

  • Adding day/hour/minute/second to a date value

    How does one add a day/hour/minute/second to a date value?

    SQL> select to_char(sysdate, 'DD/MM/YYYY HH24:MI:SS') to_day,
      2         to_char(sysdate+1, 'DD/MM/YYYY HH24:MI:SS') add_day,
      3         to_char(sysdate + 1/24, 'DD/MM/YYYY HH24:MI:SS') add_hour,
      4         to_char(sysdate + 1/(24*60), 'DD/MM/YYYY HH24:MI:SS') add_minute,
      5         to_char(sysdate + 1/(24*60*60), 'DD/MM/YYYY HH24:MI:SS') add_second
      6  from dual
      7  /
    TO_DAY              ADD_DAY             ADD_HOUR            ADD_MINUTE          ADD_SECOND
    10/10/2006 11:54:23 11/10/2006 11:54:23 10/10/2006 12:54:23 10/10/2006 11:55:23 10/10/2006 11:54:24
    SQL>Cheers
    Sarma.

Maybe you are looking for

  • HP Officejet Pro 8500 Wireless Loses Connectivi​ty.

    Hello i  plugged my printer with usb cable and its work's good in the computer and now i wnat to concnet the printer trowh wireless to another computers in instalion progam there is problem:the instalion progarm doesnot reocingzie my printer. i try t

  • New to jsp, login page errors

    Hi I'm totally new to using jsp and as part of a project I need to create a login page which compares the entered email and password with those contained in a database. I've created the java code and jsp pages, there's no obvious errors (to me anyway

  • My MAC can't find the airport express...

    I'm having problems hooking up Airport Express to airplay. My MAC can't find it...wireless network is working fine, I have Klipsch speakers working fine over Airplay...but Airport express will not connect to my network. Help!

  • Preventing render files  - or other unwanted files - from being analyzed

    Even THOUGH the the manual says that render files don't get analysed when checking in a Final Cut Project we are having an issue where the render files are being added to the catalogue during the daily scan of the SAN. As a result we are getting prox

  • Data Modeling with BPC

    Hello , does any body know some paper that explains the datamodeling process in BPC? Thanks Sergio