Problem activating 'Show Date/Time in Menubar'

Hallo all,
since the upgrade to Snow Leopard the Time is not shown in the menubar.
I teried to activate 'Show Date/time in Menubar' in System Preferences->Date/time->Clock, but it is not possible to check the corresponding button, it remains unchecked.
In the folder 'System/Library/Coreservices/Menu Extras/' is an empty file 'clock.menu'. For all other menu items appearing in the menubar, e.g. Users, Airport etc.,there is a corresponding '.menu' file which is not empty. Perhaps this is the reason - but how can I repair the clock.menu file? Or is there another reason for the missing date/time?
Thanks and greetings
Danny

HI and Welcome to Apple Discussions...
but how can I repair the clock.menu file?
Go to ~/Library/Preferences and move these files com.apple.menuextra.clock.plist amd com.apple.systemuiserver.plist to the Trash.
Restart your Mac.
Carolyn

Similar Messages

  • Problems converting FILETIME date/time into MM/DD/YYYY format...

    Has anyone successfully converted a FILETIME date/time value into a MM/DD/YYYY format using ColdFusion? I am failing drastically, and it seems like an easy conversion.
    FILETIME format (details: http://msdn.microsoft.com/en-us/library/windows/desktop/ms724284(v=vs.85).aspx) is a 64-bit value representing the number of 100-nanosecond intervals since January 1, 1601 (UTC).
    A database I'm working with has such values, and I want to display them in a user-friendly date format within my application.
    For example, one record is:
    13003368600
    The above number represents the following date and time:
    1/22/2013 @ 2:50 PM
    Sadly I know this only because the FILETIME value gets written to the database by a third-party application, and within that application I specify it in the MM/DD/YYYY format.
    Can anyone offer me some guidance, or better yet has anyone accomplished this already and want to share code?

    I did this, on cf9/linux, and it seemed to do the trick:
    <cfscript>
    Long = createObject("java","java.lang.Long");
    Date = createObject("java","java.util.Date");
    fileTimeToEpoch =
    // take pwdLastSet From Active Directory, it's in filetime
    pwdLastSet = JavaCast("long", Long.parseLong("130292682204519505"));
    // take filetime and turn it into epoch/java - 1970/1/1
    // http://www.silisoftware.com/tools/date.php - converted: jan 1, 1970 00:00 -00
    javaTime = JavaCast("long", pwdLastSet - 116444736000000000);
    // convert to milliseconds
    javaTime = JavaCast("long", javaTime / 10000);
    today = JavaCast("string", Date.init(javaTime));
    </cfscript>
    <cfdump var="#pwdLastSet#">
    <cfdump var="#javatime#">
    <cfdump var="#today#">

  • Finder window date added date modified show date time always

    Is there a preference setting to have a finder window with Date Added and Date Modified columns enabled to always show the date and time? Currently, the column information is dynamic, like just providing a time where you infer Today, or one column does show the date and time but the other only shows the date, or it reads Today, 12:31pm.
    I want every window when displaying Date Added or Date Modified columns to always, consistently show the date and time, e.g. 3/15/14, 7:31AM.
    Aloha and Mahalo!

    I found half of the answer: View:Show View Options - Deselect Use Relative Dates.
    Now I just need a solution to always show the time and not only the date.
    Curiously, when you initially enable a column in a Finder window, it shows both the date and time; however when you return to the window after closing it, you lose the time of day on Date Added, but not on Date Modified. -- Bug or Feature?

  • ITunes not showing Date, Time or Episode Description??

    Hello
    I recorded my Podcast through GB Exported to Disk>Desktop> Then I used Rapidweaver I guess to publish it. but when iTunes receives the Podcast for some reason Date, Time and Episode Description is missing. should I use Feedburner instead. newbie thanks in advance.

    I am having the same problem, did you have get this issue resolved?

  • Showing date/time on nest video clip

    I need to add the date/time stamp to a video I have nested...is there a plug-in to accomplish this?
    Thanks,
    Mark

    Did this ever get resolved, I am in a similar situation with Premiere CS5.5 and need a
    timer that will measure 1/100 of a second but the Premiere inbuilt time code does not offer this option.
    Is there a plugin available ?
    Rgds

  • My Podcast in iTunes not showing Date, Time, Description.

    Hello
    I recorded my Podcast through GB Exported to Disk>Desktop> Then I used Rapidweaver I guess to publish it. but when iTunes receives the Podcast for some reason Date, Time and Episode Description is missing. newbie thanks in advance.

    None of your episodes have playable media: it's necessary for each episode to have an 'enclosure' tag containing the URL of a media file - mp3. m4a, mp4, m4v, or mov - without this iTunes will not display the episodes. You say it was working before, so something has been done to the feed to change it.
    Following the link from the top episode:
    http://expertenough.com/1123/18-expert-quotes
    produces what is basically a weblog entry with no sign of any media.

  • Problem in storing date & Time value

    How to store the Date & time value in 1 textfield only.In my case i am selectecting The Time from two LOV's (HH & MM),then Date value is selecting from simple i/ptext,
    I want to store the (Date+HH+MM) in the date field.......
    code is....
    public String CalculationM() {
    BindingContainer bindings = getBindings();
    DCIteratorBinding dcIterBinding = (DCIteratorBinding)bindings.get("Timeview1Iterator");
    RowSetIterator row= dcIterBinding.getLovRowSetIterator();
    String i=selectOneChoice5.getValue().toString();
    int index=Integer.parseInt(i);
    int index2=index+1;
    Row r= row.getRowAtRangeIndex(index2);
    String val=r.getAttribute("Hour").toString();
    String i1=selectOneChoice6.getValue().toString();
    // System.out.println("HH index="+index2+" MM index is="+i1);
    int index1=Integer.parseInt(i1);
    int index3=index1+1;
    Row r1=row.getRowAtRangeIndex(index3);
    String val1=r1.getAttribute("Minutes").toString();
    int valint=Integer.parseInt(val);
    String valnew;
    if(valint<=12)
    {  if(valint==12)
    valnew=val+":"+val1+":"+"PM";
    else
    valnew=val+":"+val1+":"+"AM";
    else
    val=String.valueOf((valint-12));
    valnew=val+":"+val1+":"+"PM";
    valnew=val+val1;
    String Dateis= inputText4.getValue().toString();
    String Date1=Dateis+" "+valnew;
    System.out.println("TOTAl Date Is="+Date1);
    try
    { SimpleDateFormat sdf = new SimpleDateFormat("dd:MM:yyyy hh:mm");
    java.util.Date date = sdf.parse(Date1);
    java.sql.Date sqlDate = new java.sql.Date(date.getTime());
    oracle.jbo.domain.Date ojdd = new oracle.jbo.domain.Date(sqlDate);
    FacesContext context = FacesContext.getCurrentInstance();
    Application app = context.getApplication();
    DCBindingContainer binding = (DCBindingContainer) app.getVariableResolver().resolveVariable(context, "bindings");
    binding.findIteratorBinding("AppointDetView1Iterator").getCurrentRow().setAttribute(7,ojdd);
    catch(ParseException e)
    System.out.println("Error is:"+e.toString());
    OperationBinding operationBinding =bindings.getOperationBinding("Commit");
    Object result = operationBinding.execute();
    if (!operationBinding.getErrors().isEmpty()) {
    return null;
    return null;
    But i am getting error ....the Time is not storing in Date field bt the Time which we r giving with the Date field is storing.......
    My Date Attribute has Date format as dd-MM-yyyy hh:mm:aa
    If i changed it to dd-MM-yyyy then .... The value "12-3-2008" is not a valid date. Valid example: "29-11-2005 ".this error is getting
    Error
    - Not a date.
    Plz help me in this case ...wil be very thankful for ur help.........

    actually i am inputting the value 12-03-2008 but i am getting tha error which i hav told before....
    plz reply me....
    Message was edited by:
    user553181

  • Activating Master data time out problem

    Dear all,
    when i try to activate master data, it gives error message "time out" . in which tcode i can increase tha time out duration?
    Thanks

    Hi John,
    Please check the thread below:
    Activate time-dep. master data (0EMPLOYEE)
    This also  suggests to run the master data activation program in background, This will solve your issue,
    -Vikram

  • Problem while inserting Date/Time in Oracle Database

    Hai,
    i want to insert the date and time in a date column. here, i am using java.sql.Date and java.sql.Time to assign the date in Prepared Statement.
    PreparedStatement psmt=con.prepareStatement("insert into test(ex_date) values(?)");
    java.util.Calendar c=Calendar.getInstance();
    c.set(2002,2,21,10,10,00);
    java.sql.Date d=new Date(c.getTime().getTime());
    java.sql.Time t=new Time(c.getTime().getTime());
    psmt.clearParameters();
    psmt.setDate(1,d);
    psmt.setDate(1,t);
    psmt.executeUpdate();
    Above program is inserted the Date and time in the database as the following "1900/2/21 10:10 AM"
    but i am giving the year as 2002. it inserted the year as 1900. what is the problem with the code?
    please let me know
    Thanks in advance.
    Regards
    sankarjune14

    Hai Franco,
    i put the wrong code. Here, is the Original Code.
    PreparedStatement psmt=con.prepareStatement("insert into test(ex_date) values(?)");
    java.util.Calendar c=Calendar.getInstance();
    c.set(2002,2,21,10,10,00);
    java.sql.Date d=new Date(c.getTime().getTime());
    java.sql.Time t=new Time(c.getTime().getTime());
    psmt.clearParameters();
    psmt.setDate(1,d);
    psmt.setTime(1,t); // Last time i put psmt.setDate(1,t);
    psmt.executeUpdate();
    and, the getTimeInMillis() method is a protected method in java.util.Calendar class. how can we use it
    please give me some other idea to insert the date and time in oracle database.
    Thanks in advance
    sankarjune14

  • Showing date, time and/or counter - HELP!

    I need the date and a counter to show (superimposed?) over the video in my iMovie. I know the date and time recorded was imported with the video files from my DV camcorder because they are available in File Info. The video recorded was a court deposition for a lawyer, and they will want the date recorded to show on the video. I'm also guessing they'll want a counter for easy access to certain parts of the video if needed. How can I do this?

    Sue,
    I did purchase and download the timecode overlay plug-ins you referenced. While they appear to be what I need, when I try to apply them to any of my clips, the clip just turns completely black with no sound. I know this gets into another topic, but any ideas?
    Thanks so much!
    Shannon

  • Font problem after inserting date/time.

    Can anyone help me with this problem? I write a daily journal in Times New Roman, 18 pt. However, when I have it insert the date and time it inserts it fine as TNR 18. But if I type the very next character it is TNR 10 pt. How do I prevent this?
    Thanks.
    Paul

    Paul, did you by chance change the Body text Paragraph Style to TNR 18? Or is it still set to 10?
    If it is set to 10 then while the Date and Time are going to be 18, Pages is reverting back to the normal Body paragraph Style, which is probably 10.
    You can get around this by changing your body style, or making a new one called "Entries" which is set to 18.

  • HT1595 Problem setting network date/time?

    I've connected appleTV2 to a public available wi-fi network (Openzone).  It is unable to set the date and time whcih means the device is unable to connect to my apple ID or be used at all.  network connection is fine from other devices (iphone, ipad, PC). anyone got any suggestions? Thanks.

    Welcome to the Apple Community.
    Assuming this is not the first time you have used your Apple TV
    You might try restarting the Apple TV by removing ALL the cables for 30 seconds.
    Also try restarting the router.
    If the problem persists, try a restore, you may want to try the previous procedures several times before doing this.
    If this is a new Apple TV, it may also be that your network router is not allowing access to the timeserver, check that your router allows access over port 123.

  • Problem with show data of system R/3

    Hi all,
    I have a proyect with web dynpro, and i like get data of system R/3. I get this data with the connection JCO.
    I have make all steps for crate the web dynpro and i see the application when deploy and run, but data of system R/3 i not see.
    I have created a connection with Jco in Web dynpro Administrator and the test is good.
    How can i make for get the data in the table of webdynpro?
    Thanks in advance.
    Vicente Zaragoza.

    Hi,
    You mentioned that there is no problem with JCO connection, if it is so then you should check the mapping of attributes to to UI elements (Usually you will map Model(BAPI) to coustom controller and coustom controllet to View Check are you mapping attributes, then In view you should map UI elements to attriburtes(Value attributr/value node depending on the context).
    And check in coustom controller's source code you are excuting a function module (Method to call function module /BAPI) and in WDINit method creat function module object <b>similar</b> to below mentioned code
    Bapi_Persdata_Getdetailedlist_Input bapiInput = new Bapi_Persdata_Getdetailedlist_Input();
        wdContext.nodeBapi_Persdata_Getdetailedlist_Input().bind(bapiInput);
    in view invoke this method
    <b>for a specific tutorial follow this link</b>
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/web dynpro tutorial and sample applications.faq
    <b>How to access R/3 Backend in Web Dynpro?</b>
    Hope your problem solved
    Regards,
    RK

  • Problem in showing data on page using struts

    hi,iam new to struts framework,
    iam trying to display data fetched from database in a page contaning multiple textfields,when i try to call this page iam getting
    "javax.servlet.ServletException: Cannot find bean org.apache.struts.taglib.html.BEAN in scope null"
    execption.can anybody tell me what can be the problem.
    action tag is
    <action path="/getdetails" type="com.dpsl.dxdam.participant.actions.ParticipantAction" name="ParticipantForm" scope="request" input="/jsp/participant/participantdetails.jsp">
    <forward name="success" path="/jsp/participant/participantdetails.jsp"/>
    </action>
    iam setting the values in textfield by
    <html:text property="participantpolicyID"/>
    iam calling the page by url
    http://localhost:8080/dxdams1.0/getdetails.do?action=getdetails
    what can be the problem ,please guide me

    Make sure all your text properties are correctly represented in your form bean.
    Clems

  • Date & Time Problems

    I'm having a frustrating problem with the MacBook. I like to have the time showing in the menu bar and have checked the "show Date & Time" box in the system preferences (even clicked the lock to prevent changes), but every few restarts of the computer, the date and time disappears and I have to go back into system preferences and add it again! This has been going on for months and is driving me up the wall! Has anyone had a similar problem and know how to fix it?
    I've tried reparing the permissions as well as resetting the PRAMs, but nothing has seemed to work yet.
    Cheers,
    Candice

    Thanks for the advice.. it's a little tough to tell, because it comes and goes after a fair number of restarts... sometimes I set it to show in the menu and one restart later it's gone, sometimes it takes 5 - 10 restarts before I find that it's disappeared again. If I start up in safe mode, will something get fixed and can start up normally for future starts?
    I have two user accounts on the computer and the problem is there for both. I've turned date and time on for both accounts.
    Cheers,
    Candice

Maybe you are looking for

  • Linked Smart Object:  Allowed File Type and Editor

    Please forgive my lack of knowledge.  I'm evaluating PS CC 2014, own PS 5.1 and am a hair shy of being a novice.  Presently I'm doing Photomerge Focus Stacking.  What I'm hoping is that DNG files can be Linked Smart Objects and that I can modify the

  • Can't play a movie I rented on Apple TV

    I just rented a movie on my new Apple TV and when I try to play it it says "Your Apple TV is not authorized to play this content." I rented a movie a few days ago, and it went fine. My internet connection is more than fast enough. I did not rent this

  • Memory errors in Precalc on Workbook using SAPGUI 720/Excel 2007

    When application does precalc of a workbook, they are getting memory errors.  This is after we are utilizing latest version of precalc Settings were started from the BEx Broadcaster     Processing for user E445357, language EN     Processing setting 

  • Trying to reduce HUGE file without changing size

    I have a 7.75MB (!) file. I am designing at full scale, wich is 90" x 90". Since I will later be using this file in a textile program and need to have it at full scale, I can't change it's dimensions. I have used live paint, layers, clipping masks, t

  • Install programs

    i`m using pacman to install stuff and i keep getting this msg ; sh: line 1: chroot: command not found at the moment i`m trying to get mozilla installed but i cant get it to start. also is there supposed to be links created in the kde menu for mozilla