I must be missing the obvious - How to update my software version 5.0.1

When I plugged my iPad 2 into the sync I  updated the iTunes version
On my device page I clicked onthe update to 5.0.1 and nothing happens
My desktop is not a MAC
Is there required software it needs to update my iPad to the higher version?
my current is 4.3.5 (not listed below)
Thank you in advance for anyone's help. This is my first time participating in a discussion

You can download a complete iPad 2 User Guide here: http://manuals.info.apple.com/en/ipad_user_guide.pdf
You may have to disable your firewall and anitvirus software temporarily to install.  Then download and install the iOS update. After you install iOS 5, you will be able to install subsequent updates via wifi (i.e., not connected to your computer)
 Cheers, Tom

Similar Messages

  • HT5165 how i update my software version 4.1

    how i update my software version 4.1

    Read the "Update your device using iTunes" section near the bottom here:
    iOS: How to update your iPhone, iPad, or iPod touch

  • CSS positioning learning - I must be missing the point?!

    CSS positioning learning - I must be missing the point?!
    Okay I would like to know the benefit of using CSS
    positioning with DIVs when you have templates that helps your pages
    look all consistent with the same navigation or header? I don't see
    how you make a site look consistent doing it the other route.
    I have been reading through a CSS positioning tutorial at
    http://www.adobe.com/devnet/dreamweaver/articles/css_concepts.html
    and it is indeed somewhat complicated ESPECIALLY when you
    have to compensate for Internet explorer quirks.
    So again... someone please tell me what the benefit would be
    to learn CSS positioning....because I haven't for sure figured it
    out. And have liked templates since you can apply them to many
    pages quickly. Is CSS positioning really the future way to go?
    Thanks,
    Angie

    Templates have nothing to do with layout. They are only able
    to control
    your page's CONTENT. The location of this content is
    dependent not on the
    region but on the HTML structure of your page.
    The real advantage of using a CSS layout is that a) the pages
    are somewhat
    to considerably lighter in weight, and b) the externally
    linked CSS file is
    cached so that you don't have to continually load the same
    structural markup
    every time, and c) once you understand how to use the CSS,
    you have so much
    more control over the placement of things on the page....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "computerkitten" <[email protected]> wrote
    in message
    news:[email protected]...
    > CSS positioning learning - I must be missing the point?!
    >
    > Okay I would like to know the benefit of using CSS
    positioning with DIVs
    > when
    > you have templates that helps your pages look all
    consistent with the same
    > navigation or header? I don't see how you make a site
    look consistent
    > doing it
    > the other route.
    >
    > I have been reading through a CSS positioning tutorial
    at <a target=_blank
    > class=ftalternatingbarlinklarge
    > href="
    http://www.adobe.com/devnet/dreamweaver/articles/css_concepts.html
    > and">
    http://www.adobe.com/devnet/dreamweaver/articles/css_concepts.html
    > and</a> it is indeed somewhat complicated
    ESPECIALLY when you have to
    > compensate for Internet explorer quirks.
    >
    > So again... someone please tell me what the benefit
    would be to learn CSS
    > positioning....because I haven't for sure figured it
    out. And have liked
    > templates since you can apply them to many pages
    quickly. Is CSS
    > positioning
    > really the future way to go?
    >
    > Thanks,
    > Angie
    >

  • Boolean refnum in a cluster missing the point how to create it... :-(

    Hello,
    It has been a while since I did Labview coding so there are some things I dont remember that good anymore. The question is simple I ques I want to make a button disabled when the program is running and do this in a subvi. Well that is simple found a lot of examples but I am missing the point how to create the boolean refnums in a cluster as in the picture below. The refnums-cluster is in the middle (vertical) of the left (horizontal). I tried to create a refnum this way: click the button Create->reference but the picture is not the same as below and if I try to put the reverence I made in a cluster It simpely disapears in the background of the cluster. Think I am missing something very simple but I am looking for hours now so I hope you guys can help me out and tel me what I am doing wrong. The exeample is a standard exeample called: "continious measurement and sampling"
    Hope you can help thank you!!

    You must have another controls beside just Booleans in our array. The array of controls has been down casted to More Generic Class which is the Control Class. One menus level up (see the picture I posted above).
    The Disabled property is part of the Control Class which Boolean inheritance. So our function should still work.
    So does your fiction work? Does it set the disabled state? Does it throw an Error?
    Omar

  • I must be missing the point but...

    I do not know how to ask this question without an example so please bear with me....
    My example is an contact book, say I have many friends (If only more of them were Java programmers) but quite a few share the same telephone number and, pervesely, quite often move to another, often already shared, telephone number. Phew!
    So, I have:
    an Telephone class:
    String number
    a Friend class:
    String name;
    Telephone tel;
    and myself:
    Friend[] friends;
    Suppose I write a GUI that wraps this hierarchy; it shows me a list of my friends and allows me to edit them - specifically to change their telephone numbers.
    Now, here's the bit I don't understand:
    Somewhere I have to have a list of telephone numbers so that when I pop up my 'friend editor' I can generate a drop down list of available telephone numbers (or even add a new one).
    Does this list exist in 'myself', should I loop through all the friends to find out what're available or something else?
    Also, surely I should 'encapsulate' the 'friend editor' in some way so that 'it just knows' where to get the list from (Ie popup a 'telephone number selector') and if so how would it achieve this?
    This is not a GUI/Swing question - I'm pretty sure I can make a half decent GUI - but a question as to how the classes interract with each other whilst still maintaining encapsulation.
    Lastly, I must be missing the point or, due to my C experience, expecting too little of the language but all the tutorials seem to miss this interraction - they seem either to build bare GUIs or basic/extended classes but never a real application showing this aspect.
    Please can someone furnish an explanation/example ?
    Thanks
    Philip

    oh goodie I love discussions like this... well, sort of. I developed a program to store contacts, each contact had a name, an address and various other fields, so what's the relavence? Well, you want a program to store phone numbers and what not, and you need different classes to accomplish running the program, well this is where I think I can help. In my program there were three methods in the main class, they did delete, insert, and edit, then there was save, and load. Inside of those methods is where things came to life. I hope the code below helps in your program somehow.// cm.java
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    // =========================================================
    // Class: cm
    // This class drives the contact manager.  It contains the
    // main method which gets called as soon as this application
    // begins to run.
    // =========================================================
    class cm extends Frame implements ActionListener
       // Container of contact objects (one object per business
       // contact).
       private Vector contacts = new Vector (100);
       // List of names component.  (Must specify java.awt in
       // front of List to distinguish the List class in the
       // java.awt package from the List class in the java.util
       // package.)
       private java.awt.List names = new java.awt.List ();
       // Delete and update button components.
       private Button delete;
       private Button update;
       // Default constructor.
       public cm ()
          // Assign Contact Manager to title bar of frame window.
          super ("Contact Manager");
          // Add a listener that responds to window closing
          // events.  When this event occurs (by clicking on the
          // close box in the title bar), save contacts and exit.
          addWindowListener (new WindowAdapter ()
                                 public void windowClosing
                                               (WindowEvent e)
                                    saveContacts ();
                                    System.exit (0);
          // Place an empty label in the north part of the frame
          // window.  This is done to correct an AWT positioning
          // problem.  (One thing that you'll come to realize as
          // you work with the AWT is that there are lots of bugs.)
          Label l = new Label ();
          add ("North", l);
          // Place the names component in the center part of the
          // frame window.
          add ("Center", names);
          // Create a panel object to hold four buttons.
          Panel p = new Panel ();
          Button b;
          // Add an Insert button to the Panel object and register
          // the current cm object as a listener for button events.
          p.add (b = new Button ("Insert"));
          b.addActionListener (this);
          // Add a Delete button to the Panel object and register
          // the current cm object as a listener for button events.
          p.add (delete = new Button ("Delete"));
          delete.addActionListener (this);
          // The Delete button should be disabled until there is at
          // least one contact to delete.
          delete.setEnabled (false);
          // Add an Update button to the Panel object and register
          // the current cm object as a listener for button events.
          p.add (update = new Button ("Update"));
          update.addActionListener (this);
          // The Update button should be disabled until there is at
          // least one contact to update.
          update.setEnabled (false);
          // Add a Finish button to the Panel object and register
          // the current cm object as a listener for button events.
          p.add (b = new Button ("Finish"));
          b.addActionListener (this);
          // Add the panel object to the frame window container.
          add ("South", p);
          // Set the background of the frame window container to
          // lightGray (to give a pleasing effect).
          setBackground (Color.lightGray);
          // Set the size of the frame window container to 400
          // pixels horizontally by 200 pixels vertically.
          setSize (400, 200);
          // Do not allow the user to resize the frame window.
          setResizable (false);
          // Load all contacts.
          loadContacts ();
          // Make sure that the frame window is visible.
          setVisible (true);
       public void actionPerformed (ActionEvent e)
          if (e.getActionCommand ().equals ("Delete"))
              delete ();
          else
          if (e.getActionCommand ().equals ("Finish"))
              saveContacts ();
              System.exit (0);
          else
          if (e.getActionCommand ().equals ("Insert"))
              insert ();
          else
              update ();
       public Insets getInsets ()
          // Return an Insets object that describes the number of
          // pixels to reserve as a border around the edges of the
          // frame window.
          return new Insets (10, 10, 10, 10);
       public static void main (String [] args)
          // Create a new cm object and let it do its thing.
          new cm ();
       private void delete ()
          // Obtain index of selected contact item from the names
          // component.
          int index = names.getSelectedIndex ();
          // If no item was selected, index is -1.  We cannot update
          // a contact if no contact item in the names component was
          // selected - because we would have nothing to work with.
          if (index != -1)
              // Remove the contact item from the names component.
              names.remove (index);
              // Remove the Contact object from the contacts Vector
              // object.
              contacts.remove (index);
              // If there are no more contacts ...
              if (contacts.size () == 0)
                  delete.setEnabled (false);
                  update.setEnabled (false);
              else
              // Make sure that the first contact item in the names
              // list is highlighted.
              names.select (0);
       private void insert ()
          // Create an Insert data entry form to enter information
          // for a new contact.
          DataEntryForm def = new DataEntryForm (this, "Insert");
          // If the bOk Boolean flag is set, this indicates the user
          // exited the form by pressing the Ok button.
          if (def.bOk)
              // Create a Contact object and assign information from
              // the form to its fields.
              Contact temp = new Contact ();
              temp.fname = new String (def.fname.getText ());
              temp.lname = new String (def.lname.getText ());
              temp.phone = new String (def.phone.getText ());
              temp.fax = new String (def.fax.getText ());
              temp.email = new String (def.email.getText ());
              // Add a new contact item to the names component.
              names.add (temp.lname + ", " + temp.fname);
              // Add the Contact object to the contacts Vector
              // object.
              contacts.add (temp);
              // Make sure that the Delete and Update buttons are
              // enabled.
              delete.setEnabled (true);
              update.setEnabled (true);
          // Destroy the dialog box.
          def.dispose ();
          // Make sure that the first contact item in the names list
          // is highlighted.
          names.select (0);
       // ===========================================================
       // Load all contacts from contacts.dat into the contacts
       // Vector object.  Also, make sure that the last name/first
       // name from each contact is combined into a String object and
       // inserted into the names component - as a contact item.
       // ===========================================================
       private void loadContacts ()
          FileInputStream fis = null;
          try
              fis = new FileInputStream ("contacts.dat");
              DataInputStream dis = new DataInputStream (fis);
              int nContacts = dis.readInt ();
              for (int i = 0; i < nContacts; i++)
                   Contact temp = new Contact ();
                   temp.fname = dis.readUTF ();
                   temp.lname = dis.readUTF ();
                   temp.phone = dis.readUTF ();
                   temp.fax = dis.readUTF ();
                   temp.email = dis.readUTF ();
                   names.add (temp.lname + ", " + temp.fname);
                   contacts.add (temp);
              if (nContacts > 0)
                  delete.setEnabled (true);
                  update.setEnabled (true);
          catch (IOException e)
          finally
             if (fis != null)
                 try
                     fis.close ();
                 catch (IOException e) {}
          // Make sure that the first contact item in the names list
          // is highlighted.
          names.select (0);
       // ========================================================
       // Save all Contact objects from the contacts Vector object
       // to contacts.dat.  The number of contacts are saved as an
       // int to make it easy for loadContacts () to do its job.
       // ========================================================
       private void saveContacts ()
          FileOutputStream fos = null;
          try
              fos = new FileOutputStream ("contacts.dat");
              DataOutputStream dos = new DataOutputStream (fos);
              dos.writeInt (contacts.size ());
              for (int i = 0; i < contacts.size (); i++)
                   Contact temp = (Contact) contacts.elementAt (i);
                   dos.writeUTF (temp.fname);
                   dos.writeUTF (temp.lname);
                   dos.writeUTF (temp.phone);
                   dos.writeUTF (temp.fax);
                   dos.writeUTF (temp.email);
          catch (IOException e)
             MsgBox mb = new MsgBox (this, "CM Error",
                                     e.toString ());
             mb.dispose ();
          finally
             if (fos != null)
                 try
                     fos.close ();
                 catch (IOException e) {}
       private void update ()
          // Obtain index of selected contact item from the names
          // component.
          int index = names.getSelectedIndex ();
          // If no item was selected, index is -1.  We cannot update
          // a contact if no contact item in the names component was
          // selected - because we would have nothing to work with.
          if (index != -1)
              // Obtain a reference to the Contact object (from the
              // contacts Vector object) that is associated with the
              // index.
              Contact temp = (Contact) contacts.elementAt (index);
              // Create and display an update entry form.
              DataEntryForm def = new DataEntryForm (this, "Update",
                                                     temp.fname,
                                                     temp.lname,
                                                     temp.phone,
                                                     temp.fax,
                                                     temp.email);
              // If the user pressed Ok...
              if (def.bOk)
                  // Update the contact information in the contacts
                  // Vector object.
                  temp.fname = new String (def.fname.getText ());
                  temp.lname = new String (def.lname.getText ());
                  temp.phone = new String (def.phone.getText ());
                  temp.fax = new String (def.fax.getText ());
                  temp.email = new String (def.email.getText ());
                  // Make sure the screen reflects the update.
                  names.replaceItem (temp.lname + ", " + temp.fname,
                                     index);
              // Destroy the dialog box.
              def.dispose ();
              // Make sure that the first contact item in the names
              // list is highlighted.
              names.select (0);
    // ========================================================
    // Class: Contact
    // This class describes the contents of a business contact.
    // ========================================================
    class Contact
       public String fname;
       public String lname;
       public String phone;
       public String fax;
       public String email;
    // ==========================================================
    // Class: DataEntryForm
    // This class provides a data entry form for entering contact
    // information.
    // ==========================================================
    class DataEntryForm extends Dialog implements ActionListener
       // bOk is a boolean flag.  When true, it indicates that
       // the Ok button was pressed to terminate the dialog box
       // (as opposed to the Cancel button).
       public boolean bOk;
       // The following components hold the text that the user
       // entered into the visible text fields.
       public TextField fname;
       public TextField lname;
       public TextField phone;
       public TextField fax;
       public TextField email;
       public void actionPerformed (ActionEvent e)
          // If the user pressed the Ok button, indicate this
          // by assigning true to bOk.
          if (e.getActionCommand ().equals ("Ok"))
              bOk = true;
          // Destroy the dialog box and return to the point
          // just after the creation of the DataEntryForm object.
          dispose ();
       public DataEntryForm (Frame parent, String title)
          // Call the other constructor.  The current constructor
          // is used for insert operations.  The other constructor
          // is used for update operations.
          this (parent, title, "", "", "", "", "");     
       public DataEntryForm (Frame parent, String title,
                             String fname, String lname,
                             String phone, String fax,
                             String email)
          // Initialize the superclass layer.
          super (parent, title, true);
          // Choose a grid bag layout so that components can be more
          // accurately positioned.  (It looks nicer.)
          setLayout (new GridBagLayout ());
          // Add appropriate first name, last name, phone, fax, and
          // email components to the current DataEntryForm container.
          // (Remember, DataEntryForm is a subclass of Dialog.
          // Dialog is a container.  Therefore, DataEntryForm
          // inherits the ability to be a container.)
          addComponent (this, new Label ("First name: "), 0, 0, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.WEST);
          this.fname = new TextField (15);
          addComponent (this, this.fname, 1, 0, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.CENTER);
          if (title.equals ("Update"))
              this.fname.setText (fname);
          addComponent (this, new Label ("Last name: "), 0, 1, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.WEST);
          this.lname = new TextField (15);
          addComponent (this, this.lname, 1, 1, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.CENTER);
          if (title.equals ("Update"))
              this.lname.setText (lname);
          addComponent (this, new Label ("Phone number: "), 0, 2, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.WEST);
          this.phone = new TextField (15);
          addComponent (this, this.phone, 1, 2, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.CENTER);
          if (title.equals ("Update"))
              this.phone.setText (phone);
          addComponent (this, new Label ("FAX number: "), 0, 3, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.WEST);
          this.fax = new TextField (15);
          addComponent (this, this.fax, 1, 3, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.CENTER);
          if (title.equals ("Update"))
              this.fax.setText (fax);
          addComponent (this, new Label ("Email address: "), 0, 4, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.WEST);
          this.email = new TextField (15);
          addComponent (this, this.email, 1, 4, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.CENTER);
          if (title.equals ("Update"))
              this.email.setText (email);
          addComponent (this, new Label (""), 0, 5, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.CENTER);
          addComponent (this, new Label (""), 1, 5, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.CENTER);
          Button b;
          // Add an Ok button to this container.
          addComponent (this, b = new Button ("Ok"), 0, 6, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.CENTER);
          b.addActionListener (this);
          // Add a Cancel button to this container.
          addComponent (this, b = new Button ("Cancel"), 1, 6, 1, 1,
                        GridBagConstraints.NONE,
                        GridBagConstraints.CENTER);
          b.addActionListener (this);
          // Set the size of the dialog window to 250 pixels
          // horizontally by 200 pixels vertically.
          setSize (250, 200);
          // Do not allow users to resize the dialog window.
          setResizable (false);
          // Make sure that the dialog window is visible.
          setVisible (true);
       private void addComponent (Container con, Component com,
                                  int gridx, int gridy,
                                  int gridw, int gridh, int fill,
                                  int anchor)
          // Get the current layout manager.  It is assumed to
          // be a GridBagLayout object.
          LayoutManager lm = con.getLayout ();
          // Create a GridBagConstraints object to make it
          // possible to customize component positioning.
          GridBagConstraints gbc = new GridBagConstraints ();
          // Assign the x and y grid positions.
          gbc.gridx = gridx;
          gbc.gridy = gridy;
          // Assign the number of grid blocks horizontally and
          // vertically that are occupied by the component.
          gbc.gridwidth = gridw;
          gbc.gridheight = gridh;
          // Specify the component's resize policy (fill) and
          // the direction in which the component is positioned
          // when its size is smaller than available space (anchor).
          gbc.fill = fill;
          gbc.anchor = anchor;
          // Set the new constraints that the grid bag layout
          // manager will use.
          ((GridBagLayout) lm).setConstraints (com, gbc);
          // Add the component to the container.
          con.add (com);
    // ===========================================================
    // Class: MsgBox
    // This class displays a message box to the user.  The message
    // is usually an error message.  The user must press the Ok
    // button to terminate the message box.
    // ===========================================================
    class MsgBox extends Dialog implements ActionListener
       public void actionPerformed (ActionEvent e)
          // Terminate the dialog box in response to the user
          // pressing the Ok button.
          dispose ();
       public MsgBox (Frame parent, String title, String msg)
          // Initialize the superclass layer.
          super (parent, title, true);
          // Store the msg argument in a Label object and add
          // this object to the center part of the dialog window.
          Label l = new Label (msg);
          add ("Center", l);
          // Create a Button object and add it to the south part
          // of the dialog window.
          Button b = new Button ("Ok");
          add ("South", b);
          // Make the current object a listener to events that
          // occur as a result of the user pressing the Ok
          // button.
          b.addActionListener (this);
          // Make sure that the Ok button has the focus.
          b.requestFocus ();
          // Do not allow users to resize the dialog window.
          setResizable (false);
          // Allow the layout manager to choose an appropriate
          // size for the dialog window.
          pack ();
          // Make sure that the dialog window is visible.
          setVisible (true);
    }

  • Exporting slideshows results in file with only the first picture then a blank white screen with music. Apple bug or am I missing the obvious?

    When I export slideshows the result is a file with only the first picture then a blank white screen with music. Apple bug or am I missing the obvious?

    Usually when the phone shows just the white Apple logo, it indicates an issue with the system software that prevents the phone from finishing it's boot sequence. When this happens, you will need to restore the phone, which removes all data and replaces the system software with a fresh set.
    Since the phone is not seen in iTunes when it's in this state, you will have to put it into DFU mode for iTunes to see it.
    To put the phone in DFU mode:
    - make sure the phone is connected to a computer with the current version of iTunes on it.
    - hold the sleep/wake button and the home button simultaneously for 8 seconds.
    - let go of the sleep/wake button and continue pressing the home button. The iTunes screen will show a short progress bar then show a dialog box stating that an iPod was detected that is in recovery mode.
    -click OK
    -click the Restore button in the middle of the iTunes page
    After the restore the phone should be back up and running and you can sync your data back.

  • Missing the obvious?

    Am I missing the obvious here? From FAQ:
    <snip>
    Q: Does ODP.NET support Windows Server 2003?
    A: Yes, Windows Server 2003 is supported with ODP.NET 9.2.0.3.0 and higher
    </snip>
    9.2.0.3.0 does not appear to be available anywhere.

    The answer will be clarified tomorrow on the FAQ page.

  • I have an idea for a new feature of the calendar app on a new software version. Does anyone know how to contact Apple to let them know the idea?

    I have an idea for a new convenient feature of the calendar app on a new software version. Does anyone know how to contact Apple to let them know the idea?

    First see here  >  http://www.apple.com/legal/policies/ideas.html
    You can leave Feedback here  >  http://www.apple.com/feedback/

  • Downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?

    downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?
    I click on the launcher and nothing happens, 15 min later it will tell cant connect to the server.
    My computer is a windows 8.1; 64 bit operating system. I am stationed in South Korea, but that should not affect the program. Help please.
    John

    Hi johnd83157268,
    Sorry for the inconvenience that has caused to you.
    Could you please let me know what changes have you made in the registry.
    You might need to uninstall Adobe Reader from Control Panel and try install it again from the following link:
    Adobe Reader Install for all versions
    Please ensure that you are logged in as administrator and anti-virus is disabled as that might interrupt installation.
    Try again and then let me know.
    Regards,
    Anubha

  • Hi, i am from india, im using iphone3gs with ios5.1.1 .i want to update the same to ios6 or to ios7,but i couldnt find the software update option in my iphone,so plz help me how to update my software.

    hi, i am from india, im using iphone3gs with ios5.1.1 .i want to update the same to ios6 or to ios7,but i couldnt find the software update option in my iphone,so plz help me how to update my software.

    Are you sure it's a 3GS? What is the model number?

  • I want to maintain Safari 10.6.8 on my computer and then install Maverick on a separate internal drive so I can run new FCPX software and maintain the older OS for my older software versions.  Can you tell me how please?

    I want to maintain Safari 10.6.8 on my computer and then install Maverick on a separate internal drive so I can run new FCPX software and maintain the older OS for my older software versions.  Can you tell me how please?
    I see an upgrade path from Safari but don't want to change that and would like to be able boot from Maverick when needed.
    Is this possible and how?
    Thank you!

    On the Apple site I see an upgrade path but not from scratch.  I will use my current systems and then it place a complete install of Maverick on the other drive to boot from?
    Thank you!

  • The upgrade patch cannot be installed by the windows installer service because the program to be upgraded may be missing, or the upgrade patch may update a different version of the program

    trying to install an update patch for Citrix xendesktop 7.5 and the error when I click on the msi patch is "the upgrade patch cannot be installed by the windows installer service because the program to be upgraded may be missing, or the upgrade patch
    may update a different version of the program"
    The application was installed 2 days prior and works fine but the patch will not install.
    Any ideas?
    Wendy2014

    Yes let's see if there is any error occurs in installation log.
    Meanwhile from the error message, the possible cause is that a part of the application is missing such as a registry key with app version. In this situation you can first test to reinstall/repair the application though it is still working fine - see if issue
    persists after reinstall the app.
    Meanwhile you could also contact Citrix about this issue. It may be a common issue and Citrix may provide a quick fix for it. 
    If you have any feedback on our support, please send to [email protected]

  • I am using iphone 3gs and have accidentally clicked "update" to software version 5. However, after I failed and all my data was lost. I manage to restore back to my previous situation. But all my apps has been gone. How can I get back all my aps?

    I am using iphone 3gs and have accidentally clicked "update" to software version 5. However, after I failed and all my data was lost. I manage to restore back to my previous situation. But all my apps has been gone. How can I get back all my aps? I know I can get it by itunes but there are a few problems as below:
    1. I have jailed break my iphone and I never purchased any apps from itunes
    2. I have some important infomation saved in one of the apps called "awesome notes". How can I get it back? Is it store inside my computer? if so, how can i restore?
    3. I am using window 7
    I sincerely hope you guys can help me.
    Regards,
    Stephen Hong

    alrite. I have made my mistake. I should not jail break my iphone. So if I purchase my apps again from itunes is that mean mean my data will be back?
    I hope you guys can giv me some support here since I am Apple genuine buyer. I could be wrong last time and now I turn over a new leaf and learn a lesson.
    Please noted that I can always create new account to ask for the same questions without mention about "jailbreak" if I want to but obviously I won't do that. Please provide me your support! Thank you!

  • HT4623 I have an iPad2 w/ wi-fi, 16gb.  I would like to update my software version from 4.3.5 to a later version; however, when I go to settings, general, the "software update" option does not appear???

    I have an iPad 2 w/wi-fi, 16 GB.  I would like to update my software version from 4.3 to a later versionn; however, when I go into Settings, General, the "Software Update" option is not there???

    Judi126 wrote:
    ... "Software Update" option is not there???
    That is only a feature of iOS 5 or later...
    You have iOS 4... See Here...
    http://support.apple.com/kb/HT4972
    OR...
    Connect to iTunes on the computer you usually Sync with and “ Check for Updates “...
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch

  • HT1338 i have imac 8,1 how i update my software from 10.5.8 to 10.6.8

    i have imac 8,1 how i update my software from 10.5.8 to 10.6.8

    Call 1-800-MY-APPLE (or your county's support number).  Apple is selling single user disks for $19 or 5-user family disks for $29.   If you think you will another copy of SL in the future, buy the $29 family pack before Amazon at $100+ becomes your only source.

Maybe you are looking for

  • Exporting data from a multiple worksheet excel to oracle database.

    Hi, Am having a very big problem,i have to export data from excel to database.My excel is havin multiple worksheet. I thought of most of the options nothing is suiting my layout. SQL loader ,can't use due to multiple worksheet. HSServices can;t use b

  • Folders not showing up in Finder?

    I've recently bought an iMac (21.5") and have been transferring all my music from the old PC to it via an external hard drive (format: MS-DOS (FAT32), 1tb). I've noticed that some folders just don't show up in Finder. I have no idea why - they are ex

  • When I open Garage Band '09 it says" No Apple Loops found; There are no Apple Loops installed on your System. Please reinstall the Apple Loop Package".

    I have garage band '09 on my mac.  When I open garage band a little notice pops up saying "No Apple Loops found; There are no Apple Loops installed on your System. Please reinstall the Apple Loop Package"  I have followed the instructions on the appl

  • A Java Question

    {color:red}"using eclipse "{color} Given the structure in [ |http://www.eng.kuniv.edu/ocs/file.php/622/Interface.JPG]for the Interface and the classes, write a java program that implements the given structure. Add a driver, create atleast one object

  • ALE Third Party Purchase

    Hi gurus, I tried to use item category ALES "ALE Third Party Purchase" in sales order and expected to have both purchase requsition and purchase order created when I saved sales order. It turned out only purchase requsition was created. Then I create