ICal: how can I see the duration from events?

Is it possible to see how many hours/minutes takes an event? I NEED IT.

No, it's not possible. Apple thinks you do not need it.

Similar Messages

  • HT201269 How can i see the pictures from the back up  in my pc?

    I wonder if it is possible to see the pictures from my phone in the computer after I have done the Back up?

    No.
    you should be importing all pics taken with the iphone to your computer regularly as you would with any digital camera.
    The backup is only used for restoring the info to your iphone.

  • How can I see the path from the preview file (*.prel) to my video files ?

    Because a lack of hard disk space I have moved my video files to another drive and therefore unfortunately destroyed the relative connection to the preview file (*.prel).
    Therefore the videos are not to be seen in the preview file any more.
    How can I get information about the relative path between the preview file and the place for the original video files so I can get those back in the original position ?
    or:
    It may be possible to change the path for every clip in my preview file - but how ?
    I can read answers in English, German or Danish.

    hansk
    What version of Premiere Elements on what computer operating system?
    Generalizing for now...
    If you know where the files are by actually seeing them in their hard drive save location and you are getting "Where is the file ______?" messages, then you use those
    messages to reconnect the source media to the project. Are you getting those messages and have you tried for the reconnects that way?
    If edits are involved in the files that have become disconnected to the project, you can also consider the program's Replace Footage feature.
    ATR Premiere Elements Troubleshooting: PE11: Replace Footage
    Typically either of these ways is one at a time reconnects. With the "Where is the file _____?" message way sometimes you get lucky (depends on the circumstances) and more
    than one file at a time might reconnect.
    Please review and consider. Any questions or need clarification, please ask.
    ATR

  • How can i see the "manage devices" in my itunes account? because i want to remove a device from using my apple id. tnx so much

    how can i see the "manage devices" in my itunes account? because i want to remove a device from using my apple id. tnx so much

    Thanks pvonk, I will try downloanding the book from the Iphone right now.......
    Just tried to download and it wants me to buy it again?  Is there some way around this?  I guess I thought that was the whole point of the cloud, buy it once and access from any of your devices right?
    Also, I have logged into the icloud.com as suggested and will plink around there for a bit and try to understand.  It is just all so dang different that what I am used to; Apple's way, that is.
    Thanks again for the Icloud tip and if you know of a way to download without making a 2nd purchase I would sure love to hear it!
    Geez. one other thing (I guess I am complaining) but I bought more space in the cloud, they took my cash fast enough but have not yet increase the size of my storage space yet?  Is Apple sometimes slow to get internal stuff done?

  • How can I see the date on my photos taken from my iPod touch

    how can I see the date on my photos taken from my iPod touch...

    The requirements for the app are:
    Requirements: Compatible with iPhone, iPod touch, and iPad.Requires iOS 5.0 or later.

  • How can I see website data from itouch 4th generation?  My 8 yr old may have been on inappropriate sites and I need to see the data from website data stored on the itouch.

    How can I see website data from itouch 4th generation?  My 8 yr old may have been on inappropriate sites and I need to see the data from website data stored on the itouch.

    There is no way to see where he has been.
    Go into Settings > General > Restrictions > Safari and turn it off. Then add the MacGruff browser from the app store. After that go back to Restrictions and turn off the ability to add apps.

  • Hii, Hii, Hii how can i see the number of sms i had sent from iphone5

    Hii, Hii, Hii how can i see the number of sms i had sent from iphone5????

    Log into your carriers web site to check or use app for that carrier.  The total count will be there.
    An example: for Verizon https://itunes.apple.com/us/app/my-verizon-mobile/id416023011?mt=8

  • I'm using "window.open()" to show one Calendar in a popup window. I can see that the popup is re-sizable. How can I prevent the user from re-sizing the popup?

    I'm using "window.open()" to show one Calendar in a popup window. I can see that the popup is re-sizable. How can I prevent the user from re-sizing the popup? I have tried "resizable=yes|no|1|0" and that seems to be not working.

    You can't prevent users from resizing a pop-up.
    *https://developer.mozilla.org/en-US/docs/Web/API/window.open

  • How can i get thes songs from ipod nano to the itunes libary??

    hi
    i have ipod nano and i sync it with over 500 songs .....my bad i lose all that songs on my libary  .... how can i get thes songs from ipod nano to the itunes libary??

    See this older post from another forum member Zevoneer on different ways to copy content from your iPod to your computer.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • How can I see the old backups of my previous Macbook done by Time machine in a Time capsule with my new iMac?

    How can I see the old backups of my previous Macbook done by Time machine in a Time capsule with my new iMac? I've changed from a Macbook to a iMac because that one stopped working and I cannot use it anymore. I've been able to import all the data of the last backup of the Macbook when setting the new iMac, but I cannot access now to the old backups of the Macbook and there are information that wasn't in the last backup and I would like to recover. Thank you very much.

    Yes, you can ..
    Read Q17 here.
    http://pondini.org/TM/FAQ.html
    Strongly recommend his whole section.. 14-17 and read it carefully to understand the ways you can make TM work for you.

  • How can I see the contents in a Ref Cursor

    I have this code:
    CREATE OR REPLACE PACKAGE APOD_LOG.APOD_C3_LOG_API_PKG
    AUTHID CURRENT_USER
    AS
    type rc is ref cursor;
    PROCEDURE Fetch_Log_Spec
    in_LOCAL_IP_VALUE IN BINARY_INTEGER,
    out_RESULT_SET OUT rc
    END APOD_C3_LOG_API_PKG;
    CREATE OR REPLACE PACKAGE BODY APOD_LOG.APOD_C3_LOG_API_PKG
    AS
    PROCEDURE Fetch_Log_Spec
    in_LOCAL_IP_VALUE IN BINARY_INTEGER,
    out_RESULT_SET OUT rc
    IS
    BEGIN
    DBMS_APPLICATION_INFO.set_module(module_name => 'APOD_LOG.API_PKG',action_name => 'Fetch_Log_Spec');
    DBMS_APPLICATION_INFO.set_client_info(client_info => 'Calling with in_LOCAL_IP_VALUE = ' ||to_char(in_LOCAL_IP_VALUE));
    open out_RESULT_SET for
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.100.1''') as MULTICAST_IP_VALUE
    from
    dual
    union
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.200.1''') as MULTICAST_IP_VALUE
    from
    dual
    union
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.100.123''') as MULTICAST_IP_VALUE
    from
    dual
    union
    select
    in_LOCAL_IP_VALUE as IN_LOCAL_IP_VALUE,
    10002 as PORT,
    APOD_CORE.UTIL_IP_PKG.IPAddressToIPValue2('''224.168.200.123''') as MULTICAST_IP_VALUE
    from
    dual;
    DBMS_APPLICATION_INFO.set_client_info(client_info => 'Called Fetch_Log_Spec '||to_char(SQL%ROWCOUNT)||' row(s) returned with in_LOCAL_IP_VALUE = '||to_char(in_LOCAL_IP_VALUE) );
    END Fetch_Log_Spec;
    END APOD_C3_LOG_API_PKG;
    And I am trying to test it like this:
    DECLARE
    IN_LOCAL_IP_VALUE BINARY_INTEGER;
    OUT_RESULT_SET APOD_LOG.APOD_C3_LOG_API_PKG.rc;
    BEGIN
    IN_LOCAL_IP_VALUE := 23374048;
    -- OUT_RESULT_SET := NULL; How do I see this
    APOD_LOG.APOD_C3_LOG_API_PKG.FETCH_LOG_SPEC ( IN_LOCAL_IP_VALUE, OUT_RESULT_SET );
    END;
    How can I see the dataset returnd by the OUT_RESULT_SET in SQLPlus or Quest ScriptRunner?

    A ref cursor doesn't really contain rows but you can use them to reference a SQL statement that fetches the rows.
    Re: returning resultset from procedure...or pkg

  • Recently I bought an Ipad, now I need to find the old owner, so he can unlock it, but the full e-mail isn't written. How can I see the old e-mail?

    So, yesterday I bought an Ipad 3 16gb. when I unpacked it, I found that it is locked, so I need the previous owner to unlock it. For the bad cause, the owner is from UK, and I've bought it from a  intermediary in Bulgaria. How can I see the full email so I can contact him?

    Apple will not provide that information unless order to do so by a court order.  Your only option at this point is to return it to the intermediary and get your money back.  They should not have sold you a locked device.  Then don't buy another device without confirming that it isn't locked, as explained under "how do I check for activation lock before buying a used device" in this article: Find My iPhone Activation Lock.

  • How can I use the photos from iphoto to display in contacts?

    Contacts has a space for a photo.  At one time I knew how to populate this space with photos from iPhoto. Currently my choices are to use an icon or take a pic with the camera.
    How can I add the photos from iPhoto to the choices for populating the "Contacts" image space for individual cards?

    See this Discussion...
    https://discussions.apple.com/message/19082703#19082703

  • How can I pass the photos from one iphone to another?

    how can I pass the photos from one iphone to another?

    Use the Beaming feature. See the info at the ? In iPhoto for iOS.

  • HT4437 I want to develop a software with AirPaly service for business things. How can I get the permission from Apple?

    I want to develop a software with AirPaly service for business things. How can I get the permission from Apple?
    This one is used in Windows laptop, and I want it support AirPlay service, but Apple doesn't publish the AirPlay protocol.
    Many thanks.

    Create a developer account, then access he developers forums and see if you can find the information that way 
    The other option would be to simply contact Apple directly.

Maybe you are looking for

  • LaCie External Drive No Longer Recognized

    My LaCie d2 Hard Drive (Extreme) suddenly is no longer recognized. This may or may not have anything to do with my copying several files to it just prior, with much memory still available on it. I rebooted my computer twice and it was still not there

  • Excel export defaults to ".txt"

    Hi Forum, I have a question regarding the "Excel" export button on SAP B1. Whrn i try to export data clicking the excel button, the window "Save As" defaults to ".txt" extension.... is there a place to change the default to make it ".xls" instead???

  • TS3274 I have a pop up notification that won't go away after I hit OK

    My son used my Ipad with the app "Find my iPhone" to find his iTouch.  We have done this many times with both devices only this time when I open my iPad the notification is there stating "Iphone has been found" hit "OK".  I hit OK and the notificatio

  • ITunes sync hangs only when syncing photos to Apple TV

    I just got an Apple TV, and updated it to the last software v2.4; iTunes is also running latest v 9x. I have a large library and the first sync took a long time but it got done successfully. But when I select images I want to sync in the 'photos' tab

  • How do I do it in logic?

    I want to create a progressive house synth bass like they show in this thread: http://www.youtube.com/watch?v=ggsHn-hwph0 The problem is that they show how to do it in reason 4.0 and I wanna know how I do it in Logic. Best regards // Freddy