How to choose a specific version and detect the same specific version?

I've found the following link in other posts about choosing versions programmatically:
http://java.sun.com/products/plugin/versions.html
Well, I'm not quite sure how to use that classid for "static versioning". I mean, if I need to use 1.3.1_08 but not others (not even 1.3.1_07 or 1.3.1_09, but only 1.3.1_08), what classid should I use?
That page doesn't teach us what syntax we're supposed to use!
On the other hand, my webapp needs to detect what JRE is installed and would suggest what to do in case the specific version can't be found in client computer. What should I do?
Thirdly, I've noticed that the order of installing versions is important. Let's say there're two versions in a computer, V1 and V2, while what I need is V1. Depending on V1 or V2 is the final installed one, my detection might or might not work. Someone knows what to do?
TIA

galo,
willkommen zu den Apple Diskussionen.
You don't state which version of Keynote you're using. Keynote 3 offers an option to restart the presentation after an inactivity of x min (at least 1 min).
Look at Document inspector on the Document tab.
In German: Klick im Informationen-Fenster auf das weiße Blatt und ggf. den Dokument-Button. Dort findest Du:
Präsentation als Endlosschleife
Präsentation neu starten nach Inaktivität von
Viel Erfolg.
If this information is useful to you, please mark it as "helpful" or "solved" using the little buttons in the titlebar of this message. Thank you.
PowerBook G4 17", 1GB   Mac OS X (10.4.7)   iMac G5 20"; iPod 3G, iPod Shuffle, iSight

Similar Messages

  • How to bind to a dataset and at the same time trim the text?

    Hi,
    I want to bind a listbox to a dataset, and the text value in the dataset is not always trimmed.
            Dim dsCity as dataset = GetListOfCity()
            ListBoxCity.DataSource = dsCity
            ListBoxCity.DataTextField = "CityName"
            ListBoxCity.DataValueField = "CityID"
            ListBoxCity.DataBind()
    I would like to ask if there is any handy way for me to bind to the dataset and at the same time, trim the text "CityName" when we are binding to it?
    Regards,
    Xavier

    Hi Xavier,
    Just as Uri Dimant said, we can use the Trim or Replace function in the textbox to trim leading or trailing spaces of any string. For example, we can use those functions as below:
    =Trim(Fields!FieldName.Value)
    =Replace(Fields!FieldName.Value, "  ", "")
    Besides, those two functions can also be done in the query with SQL.
    Reference:
    http://venkateswarlu.co.in/MSBI/ssrs/SSRS_Common_Functions__Text.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How can I sync over itunes and at the same time sync over icloud?

    Hello,
    I just recently updated my iTunes to the latest version and now run into the following challenge. With the "old" iTunes I was able to sync my Outlook calendar from my company computer over iTunes with my iPhone and my iPad. At the same time I was able to sync my private appointments on my iPhone over iCloud with my iPad. That way my appointments from my company computer appeared in a different color on my mobile devices as my private appointments and everything was fine.
    Now, after updating iTunes, I cannot sync my Outlook calendar from my company computer anymore - iTunes is just telling me I choose to sync my calendar over iCloud and leaves me no option anymore to sync "manually" in addition to the iCloud with iTunes.
    How can I solve the issue? Basically, how can I sync my company appointments with my iPhone without using iCloud on my company computer?

    Hi,
    I have the same issue and I can tell that it really *****. Now I have to manually copy cal items to my icloud calendar to have the business cal items on my iphone.  have looked into codetwo for icloud which is nice for notes, tasks and contacts but it only works for business cal items which I myself have created not for items for which I was invited. Contacted their support but I think it won't help.
    If you have any suggestions how to overcome this problem, I'd be glad if you posted your solution.
    Thx in advance
    iphone 5, iOS 6.0.1, icloud for windows 2.1, windows 7 64bit

  • How Can I replace an image and save the same size as the previous?

    I want to replace an image in a PDF, but I would like to keep the same size, and location as the previous. I have tried to to it, but the new image takes a different size.
    This is a PDF exported from an InDesign template.

    Thank you.
    The problem is that the person to edit the PDF doesn´t have ID and doesn't know how to use it.
    The idea is that the design department create very sharp ID templates for people from other departments of the company only have to replace information (text and image).
    We are looking for a program to edit PDF files and function as templates forreplacement information.

  • How to capture PLSQL package error and show the same in OAF Page.?

    Hi all,
    I am having the requirement to capture the error from a PL/SQL package and show the error in OAF page with meaning full error.
    Assume i am having the create and review page.
    The create page having the employeeLOV input field (non mandatory field).
    (i have the package which will check whether this LOV value is filled or not.. if not given then the user should be able to see a "understandable message.)
    to achieve the above scenario am following the below steps
    In my CO,
    with in try catch i called the am method which will invoke the XX_CUSTOM_PKG.
    so, from the catch it is giving me the message as shown below.
    try
    ((OAApplicationModule)localObject1).invokeMethod("insertData", personParam);--which will call the am method which in turn call the package.
    catch(Exception exception)
    throw new OAException("Review Error: "+ exception);
    Assume there are 2 possiblity of error inside this package one for Date field and another one for Employee field. we don't know which validation the user will encounter.
    For Employee field validation it is giving messag as below
    Review Error: oracle.apps.fnd.framework.OAException: Exception in insertData:java.sql.SQLException: ORA-20500: Employee field is required. ORA-06512: at "APPS.CUSTOM_UTIL_PKG", line 702 ORA-06512: at line 1
    for Date field as below.
    Review Error: oracle.apps.fnd.framework.OAException: Exception in insertData:java.sql.SQLException: ORA-20500: Date field should always greater than sysdate. ORA-06512: at "APPS.CUSTOM_UTIL_PKG", line 702 ORA-06512: at line 1
    But i need to display only the message "Employee field is required" or "Date field should always greater than sysdate" in the screen.. as information.
    Could you please help me to achive the above message? any sample code will be great help for me.
    Thanks,
    Thiru.
    Edited by: thiru_apps on Mar 13, 2012 11:13 AM

    try
    ((OAApplicationModule)localObject1).invokeMethod("insertData", personParam);--which will call the am method which in turn call the package.
    catch(Exception exception)
    //throw new OAException("Review Error: "+ exception);
    /*Try this code*/
    String exception = null;
    exception = exception.toString();
    if(exception.contains("Employee")){
    throw new OAException("Employee field is required");
    else if(exception.contains("Date")){
    throw new OAException("Date field should always greater than sysdate");
    else
    throw new OAException(exception.toString());
    I hope this might help
    Niranjana

  • How to capture excise in MIGO and refer the same excise invoice to customer

    Hi experts,
                   I am doing STO manufacturing plant to depot... i am creating STO order where No excises duties are there .Then , i create delivery by processing VL10B and create proforma invoice which is where i maintain all the condition including Excise duties..I create Excise Invoice in J1iin when supplying the materials from plant....
               How can i capture the excise invoice in receiving depot and how to refer it when selling to  the customer from receiving depot ?
           Pls clarify me asap

    Hi
    Complete the following settings
    Prerequisites
    1.Vendor Master Record for Customs Office
    Create a vendor master record http://Ext. for the customs office, so that you can create liabilities for the
    CVD (see step 3 in the process flow).
    Condition Type for CVD
    The system does not treat the CVD using tax codes, but as a condition type for planned delivery costs.
    Specify which condition type you use as follows:
    1. In the Country Version India Implementation Guide (CIN IMG), choose Global Settings u2192 Excise
    Defaults.
    2. Enter, for the tax calculation procedure that you use, the CVD condition type in the CVD cond.
    field.
    2. CVD Clearing Account
    When you post CVD to a CENVAT account the system debits the CVD to the BED
    account and credits it to a CVD clearing account.
    To specify which G/L account you want to use as the CVD clearing account:
    1. In the CIN IMG, choose Global Settings u2192 Company Settings.
    2. Enter the G/L account number in the CVD acct field.
    The following will be the process flow
    Process Flow
    1. You create a purchase order for the goods that you want and sent it to the vendor.
    For each material that you will have to pay CVD on when it comes through customs, you enter
    the CVD as a pricing condition.
    2. The vendor ships the goods to you.
    When the goods arrive in India, they go through customs. The customs officers issue a bill of
    entry for the goods, which is in effect an invoice for the CVD on the goods. Once they have
    inspected the goods, they send them on to you.
    3. The goods arrive at your plant, together with the bill of entry. In order to record the bill of entry in
    the system, the excise clerk:
    a. Enters an invoice for the bill of entry
    In Accounts Payable (FI-AR), the system creates a new vendor item for the CVD at the
    customs office. The item is offset to the CVD clearing account.
    b. Captures an excise invoice or the bill of entry
    4. The storeperson posts the goods receipt
    5. The excise supervisor posts excise invoice .
    6. The excise clerk enters the vendor invoice for the materials, following the standard procedure
    Hope it helps you

  • How do I remove iTunes 11 and restore the older version. I really don't like the new interface

    How do i remove iTunes 11 and restore the older version ??

    If you change sync settings it is on your computer and you change it and apply like you always have done.
    As far as list view goes for TV shows

  • Hi, I am trying to download IOS7 to my ipad. The programme has locked at the 'Choose a Wif-Fi network' page, a box says 'joining other network' but the page is greyed out and can't move from it.  How can I clear this screen and finish the download. Thanks

    Hi, I am trying to download IOS7 (not sure if it's 1 or 2) to my ipad. The programme has locked at the 'Choose a Wif-Fi network' page, a box says 'joining other network' but the page is greyed out and can't move from it.  How can I clear this screen and finish the download. Thanks

    Hello Den53,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iOS: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430?viewlocale=en_US
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider.
    After the device has turned off, press and hold the Sleep/Wake button until the Apple logo appears.
    Best of luck,
    Mario

  • How to delete ios 5.1 and install the older version

    how to delete ios 5.1 and install the older version????

    apple stopped signing 5.0.1 and 5.0 fw.
    but to answer your question, you can still download old firmwares and then press shift while clicking on the restore button in itunes, point it to the fw and there you (should) go.

  • HT1451 Hi All, I have 2 users on my desktop, 1 i-tunes account and log-in but both users have different music contents i.e. one has the full iTunes library and the other only has some songs. How do i get both users to have the same music content?

    I Have 2 users on my computer and both access i-tunes using same password etc. however 1 library has the full content of music but the other one has only partial playlists. How do I get both users to have the same full library?

    The title of my initial post is a bit misleading. I already took a chance deleting one of the iPhones, hoping if I deleted the wrong one, I can still reauthorize it (all with the same Apple ID acct, so not subject to 90-day waiting period, right?) The iTunes database just updated itself, and it says I have 4 "devices" "in the Cloud", but 5 "computers" associated w my account. How can I find out what computers are associated? Isn't there a list I can see? I dont have a clue what computers they might be. If I use the  "Deauthorize All" option, is it a pain to add them all back in. I assume I would have to log in from each computer to reauthorize each one. Would I have to be running the newest OS or version of iTunes to reauthorize? I think I have a PowerBook G4 Titanium with an older OS and iTunes. I'd like to keep that authorized, if possible.

  • How can I set up two iPhones with the same contact, photos, music etc... but a different sim card and phone number. They will both be my phones, but one will be for use in other countries.

    How can I set up two iPhones with the same contact, photos, music etc... but a different sim card and phone number. They will both be my phones, but one will be for use in other countries.

    Phone A = phone with information you want duplicated
    Phone B = phone that you want to copy from A
    Backup Phone A.
    Wipe Phone B using these instructions. What to do before selling or giving away your iPhone, iPad, or iPod touch - Apple Support
    Phone B should be on the 'Hello' screen. Do not swipe it. Launch iTunes. Plug in Phone B.
    When iTunes asks if you want to set up as new phone or restore from backup, choose restore from backup of Phone A.
    After this setup, any changes to one phone (i.e. adding a contact, downloading an app) will have to be manually duplicated on the second phone, if that is your desire). Making changes to one phone will not affect the other after setup.

  • How to keep all text and formats the same on multiple computers?

    I'm creating a file in InDesign CS6 on my Windows computer. I keep everything on my flash drive. When I go to school, I bring my flash drive with me and open it up on the Mac computer, but then there are are compatibility issues. There seems to be missing fonts and formats but the school uses the same version of InDesign I do. Now I was told a lot of things of how to keep the fonts and formats the same (embed the links, package the files, outline the text, save as IDML). However, it is not clear to me what each of those options do, so I don't know when or why to use them. So I just want to make sure that when I bring in my file in next Monday, I won't have any missing fonts or formats. What would you suggest is the proper things to do to keep everything the same on multiple computers? And could you please explain why?

    If you want cross-paltform comaptibility limit the fonts to OpenType or Windows TrueType formats, both of which work on both Mac and PC. To avoid missing font warnings the fonts must either be installed on each computer, or they must be in a folder named Document Fonts in the same location as the .indd file they are to work with. Packaging the file will build taht folder for you.
    the rest of the stuff in your list won't help you. .idml would allow you to open on an older version, but does nothing for your situation. Embedding the links will keep you from having missing links, but so will packaging, and embedded links will make the file much larger and harder to work with.
    For goodness sake, don't even think about outlining the text. It stops being text when you do that and you can no longer edit it.
    And finally. do yourself a big favor and don't attempt to actually work on your file directly from the flash drive. Copy the whole package folder to the hard drive, work on it, then copy back. You don't want to know how many files are fatally damaged by write errors on flash drives.

  • How to create xml file from Oracle and sending the same xml file to an url

    How to create xml file from Oracle and sending the same xml file to an url

    SQL/XML (XMLElement, XMLForest, XMLAgg, etc) and UTL_HTTP.
    Whether that works for you with the version of Oracle you have, your requirements, and needs is another story. A little detail goes a long way.

  • How to install the windows7 agent and monitor the same machine

    Hi ,
    I have installed OMS on Oracle Linux 5.7-64 bit machine. Now I am able monitor the OIM which is installed on Linux. I have some of oracle applications (domains) on windows7 machine. I want monitor the same. On em, agent deployment page I am not able to see the windows agents.
    Can you please guide me how to install the agent on windows and monitor the same?
    OEM version: 11.1.0.1
    Thanks in advance
    Regards,
    Kishore Tummeti

    If you just need to install some agents on Windows the best (imho) option is not to use the push option because getting Cygwin to run can take hours (if at all).
    Here you find a good instruction how to install the agent by hand: http://www.peasland.net/?p=122
    Sometimes the –silent mentioned in step 4b needs not to be put as second argument but as last argument.
    Eric

  • I was login a website ,and i have opened cookies , i want to open another window to login the same website use another account , and in the same windows can use the same account , how can i achieve it ? thinks

    i want to use firefox to login a website ,in the same window and different tags can user the same session
    but when i open other window and login the same website use different account .
    how can i achieve it ? thinks

    Your problem has nothing to do with the faults or limitations of a web browser.
    ''There can be only ONE active user logged in on a specific website during a whole Browsing Session. Even if you try to log-in using a new window it will sign-out the earlier User ID from that website. It will keep the most recent logged-in User ID active.''
    This is the general policy on which all websites are built. Even if you try to login the same website from another web browser, you won't be able to login from the second platform either. I just check it. Tried on Mozilla and Internet Explorer.

Maybe you are looking for