I/O errors with some discs in XP with Boot Camp    Please help.

I wasn't sure which forum to post this problem in. I've also asked this question in "Using your Intel-based iMac". It fits in a few categories, so I apologize if I've gotten it wrong.
I tried to install a game (Last Half of Darkness, 2005) yesterday, and with about 1/3 of installation complete, I got this message: An error occurred while trying to copy a file: I/O error 23. I had my choice of abort, retry or ignore. After the 1st error message I chose retry. After a bit more of the installation I got another error message: I/O 1117. I then tried to ignore, that didn't work, so I aborted. I tried to install a second time, and even tried a second copy of the same game, then tried to install the 2007 sequel to Last Half, same error messages. After each attempt at installation, I could not get the drive to eject the disc. I eventually did by restarting in OSX. My iMac is 13 months old. In November I had a similar problem with another game, this one from about 2004. In that case, the game installed, but froze a few minutes into playing. Because I couldn't play, and couldn't eject, without a great deal of time and "spinning" noise, I took the computer to the Apple Store to have them look at it. I figured that if it was 2 months from being out of warranty, I should get it fixed right then. Of course all the messing with it they did showed no drive problems. All other CD or DVDs, either commercial or homemade, music, video or games have installed and run just fine.
An internet search found this: http://support.microsoft.com/kb/891894 I did everything except the clean boot install, and contacting the manufacturer. After changing the transfer mode per these instructions, I could get all of 2/3 of the way through installation before the error messages popped up.
All drivers are up-to-date according to Windows automatic update and Apple update.
This is my 4th Mac, so I have little experience with PC/Windows. Can anyone give me a suggestion as to what I can do to install and play these games? Any help greatly appreciated.
Ruth

I'm moving this up in the queue since I couldn't find a solution on this site, or elsewhere on the net. Any suggestions greatly appreciated.
iMac 2.4 GHz, 24", 3GB ram
Mac OSX 10.5.5
XP Pro SP3 w/Boot Camp
ATI Radeon HD 2600 Pro

Similar Messages

  • Problems with Boot Camp - PLEASE HELP!

    I'm having problems with Boot Camp. Here's what's happening. I ran Boot Camp Assistant, partitioning a 32GB BOOTCAMP drive. I insert my copy of XP and start the installation. My MBP restarts and boots into the Windows Setup. I let it run through the initial actions. I press ENTER to proceed, F8 to accept the license agreement, then when I get to the part where I should be able to select the Partition 3 BOOTCAMP drive (as it says in the Apple Boot Camp Manual) there is only a Partition 1 Unknown drive. It is the only drive to choose from and its a C: drive. I can't figure out why after I run boot camp the partitioned drive doesn't appear as an option in the windows installation. Please help!!!
    Message was edited by: CarlConti08

    Boot into Leo, start Disk Utility and you should see two partitions, your Leo partition and a Fat32 partition of 32GB at the end of the drive.
    If not, boot camp didn't create it for some reason. If it is there then check it with DU and make sure its OK.
    While your in there give it a name so you can easily identify it in your windows installer.
    If there is no partition, create one using Disk Utility at the END if the drive. make sure you create it as a msdos (Fat32) partition and give it a name. The name cannot be more than 11 characters must be comprised of numbers and/or letters (no special characters).
    Verify it before exiting DU.
    Put in windows install disk, reboot - hold option key after the chime until you see the boot screen - select windows CD to begin install.
    Don't forget to install Leo windows drivers after installing windows.
    Kj

  • Can't install Win 7 from USB with Boot Camp - please help

    Hi,
    I'm going crazy trying to install Win 7 from a USB using Boot Camp.
    I've got a 13" MacBook (Aluminum) with 6GB RAM (trying to get to 8GB, but that's a different issue), 500GB HDD, running 10.7.4.
    In the Boot Camp Assistant I want to partition 60GB for the Win 7 drive, but when I click install I get the error: "The installer disc could not be found.  Insert your Windows installer disc and wait a few seconds for it to be recognized."  However, the USB drive that I used Windows 7 USB/DVD Download Tool in Win XP to create is plugged in.  I also have the .iso file on my Mac desktop.
    Googling hasn't produced any solution that I can work - most seem to be using Boot Camp assistant 3.0, and I've got 4.0.3 running.
    I'd appreciate help, particularly step-by-step instructions that I could follow.
    Thanks in advance.

    Lion has been out and most threads here deal with 10.7. and BCA 4.0.x
    There are problems with burning ISO to DVD etc at anything other than slowest burn speed (2x)
    New 2012 models don't have an internal DVD but if you do, then yours does not support a USB-DVD.
    So you are running XP now and have Windows XP partition? knowing that the update will need 40GB and that Lion does not support XP.
    Look at the other posts I made this morning for some of the FAQ Boot Camp support links.

  • Error with - addStylesToDocument(doc); please help

    Hello, this is my unfinished code for a simple program I am writing. Basically I have a menu and buttons, and am looking to add a JTextPane. I think I have all the code there, except when compiling I am having an error with line addStylesToDocument(doc); if I comment this out then nothing happens but the program runs as normal (before I added the JTextPane code) the error I am getting is "non-static method addStylesToDocument(javax.swing.text.StyledDocument) cannot be referenced from a static context" this makes a little sence to me but not enough to be able to correct it as I am pretty much a beginner...
    If anyone has any suggestions to fix this I would appreciate your input.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    public class ShoppingCart extends JPanel
                            implements ActionListener {
        protected JButton bapple, borange, bbanana, bstrawberry, blemon, bgrape, b7, b8, b9, b10;
        public JMenuBar createMenuBar() {
         JMenuBar menuBar;
         JMenu menu, submenu;
         JMenuItem menuItem;
         JRadioButtonMenuItem rbMenuItem;
         JCheckBoxMenuItem cbMenuItem;
    menuBar = new JMenuBar();
    menuBar.setBackground(Color.white);
          menu = new JMenu("A Menu");
          menu.setBackground(Color.white);
            menu.setMnemonic(KeyEvent.VK_A);
            menu.getAccessibleContext().setAccessibleDescription(
                    "The only menu in this program that has menu items");
            menuBar.add(menu);
          //a group of JMenuItems
          menuItem = new JMenuItem("A text-only menu item",
                                     KeyEvent.VK_T);
            //menuItem.setMnemonic(KeyEvent.VK_T); //used constructor instead
             menuItem.setBackground(Color.white);
             menuItem.setAccelerator(KeyStroke.getKeyStroke(
                KeyEvent.VK_1, ActionEvent.ALT_MASK));
           menuItem.getAccessibleContext().setAccessibleDescription(
           "This doesn't really do anything");
            menu.add(menuItem);
            ImageIcon icon = createImageIcon("/orange.gif");
            menuItem = new JMenuItem ("Both text and icon", icon);
            menuItem.setMnemonic(KeyEvent.VK_B);
            menuItem.setBackground(Color.white);
          menu.add(menuItem);
          menuItem = new JMenuItem(icon);
          menuItem.setMnemonic(KeyEvent.VK_D);
          menuItem.setBackground(Color.white);
          menu.add(menuItem);
          //a group of radio button menu items
          menu.addSeparator();
          ButtonGroup group = new ButtonGroup();
          rbMenuItem = new JRadioButtonMenuItem("A radio button menu item");
          rbMenuItem.setSelected(true);
          rbMenuItem.setMnemonic(KeyEvent.VK_R);
          rbMenuItem.setBackground(Color.white);
          group.add(rbMenuItem);
          menu.add(rbMenuItem);
          //a group if check box menu items
          menu.addSeparator();
          cbMenuItem = new JCheckBoxMenuItem("A check box menu item");
          cbMenuItem.setMnemonic(KeyEvent.VK_C);
          cbMenuItem.setBackground(Color.white);
          menu.add(cbMenuItem);
          cbMenuItem = new JCheckBoxMenuItem("Another one");
          cbMenuItem.setMnemonic(KeyEvent.VK_H);
          cbMenuItem.setBackground(Color.white);
          menu.add(cbMenuItem);
          //a submenu
          menu.addSeparator();
          submenu = new JMenu("A submenu");
          submenu.setBackground(Color.white);
          submenu.setMnemonic(KeyEvent.VK_S);
          menuItem = new JMenuItem("An  item in the submenu");
          menuItem.setAccelerator(KeyStroke.getKeyStroke(
          KeyEvent.VK_2, ActionEvent.ALT_MASK));
          menuItem.setBackground(Color.white);
          submenu.add(menuItem);
          menuItem = new JMenuItem("Another item");
          menuItem.setBackground(Color.white);
          submenu.add(menuItem);
          menu.add(submenu);
          //Build second menu in the menu bar
          menu = new JMenu("Another Menu");
          menu.setBackground(Color.white);
          menu.setMnemonic(KeyEvent.VK_N);
          menu.getAccessibleContext().setAccessibleDescription(
          "This menu does nothing");
          menuBar.add(menu); 
    return menuBar;
        public ShoppingCart() {
            ImageIcon appleButtonIcon = createImageIcon("/apple.gif");
            ImageIcon orangeButtonIcon = createImageIcon("/orange.gif");
            ImageIcon bananaButtonIcon = createImageIcon("/banana.gif");
            ImageIcon strawberryButtonIcon = createImageIcon("/strawberry.gif");
            ImageIcon lemonButtonIcon = createImageIcon("/lemon.gif");
            ImageIcon grapeButtonIcon = createImageIcon("/grape.gif");
            bapple = new JButton(null,  appleButtonIcon);
            bapple.setVerticalTextPosition(AbstractButton.CENTER);
            bapple.setBackground(Color.white);
            bapple.setHorizontalTextPosition(AbstractButton.LEADING);
            bapple.setMnemonic(KeyEvent.VK_D);
            bapple.setActionCommand("apple");
            borange = new JButton(null, orangeButtonIcon);
            borange.setVerticalTextPosition(AbstractButton.BOTTOM);
            borange.setBackground(Color.white);
            borange.setHorizontalTextPosition(AbstractButton.CENTER);
            borange.setMnemonic(KeyEvent.VK_M);
            borange.setActionCommand("orange");
            bbanana = new JButton(null, bananaButtonIcon);
            bbanana.setBackground(Color.white);
            bbanana.setMnemonic(KeyEvent.VK_E);
            bbanana.setActionCommand("banana");
            bstrawberry = new JButton(null,  strawberryButtonIcon);
            bstrawberry.setVerticalTextPosition(AbstractButton.CENTER);
            bstrawberry.setBackground(Color.white);
            bstrawberry.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            bstrawberry.setActionCommand("strawberry");
            blemon = new JButton(null,  lemonButtonIcon);
            blemon.setBackground(Color.white);
            blemon.setVerticalTextPosition(AbstractButton.CENTER);
            blemon.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            blemon.setActionCommand("lemon");
            bgrape = new JButton(null,  grapeButtonIcon);
            bgrape.setBackground(Color.white);
            bgrape.setVerticalTextPosition(AbstractButton.CENTER);
            bgrape.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            bgrape.setActionCommand("grape");
            /*b7 = new JButton(null,  leftButtonIcon);
            b7.setVerticalTextPosition(AbstractButton.CENTER);
            b7.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            b8 = new JButton(null,  leftButtonIcon);
            b8.setVerticalTextPosition(AbstractButton.CENTER);
            b8.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            b9 = new JButton(null,  leftButtonIcon);
            b9.setVerticalTextPosition(AbstractButton.CENTER);
            b9.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            b10 = new JButton(null,  leftButtonIcon);
            b10.setVerticalTextPosition(AbstractButton.CENTER);
            b10.setHorizontalTextPosition(AbstractButton.LEADING); //aka LEFT, for left-to-right locales
            //Listen for actions on buttons
            bapple.addActionListener(this);
            borange.addActionListener(this);
            bbanana.addActionListener(this);
            bstrawberry.addActionListener(this);
            blemon.addActionListener(this);
            bgrape.addActionListener(this);
            bapple.setToolTipText("Apple.");
            borange.setToolTipText("Orange.");
            bbanana.setToolTipText("Banana.");
            bstrawberry.setToolTipText("Strawberry.");
            blemon.setToolTipText("Lemon.");
            bgrape.setToolTipText("Grape.");
           /* b7.setToolTipText("7");
            b8.setToolTipText("8");
            b9.setToolTipText("9");
            b10.setToolTipText("10");
            //Add Components to this container, using the default FlowLayout.
            add(bapple);
            add(borange);
            add(bbanana);
            add(bstrawberry);
            add(blemon);
            add(bgrape);
           /* add(b7);
            add(b8);
            add(b9);
            add(b10);*/
        public void actionPerformed(ActionEvent e) {
            if ("apple".equals(e.getActionCommand())) {
           String  input1 =  JOptionPane.showInputDialog( "How many apples would you like to purchase?" );
            int  number1 = Integer.parseInt( input1 );
             if ("orange".equals(e.getActionCommand())) {
           String  input2 =  JOptionPane.showInputDialog( "How many oranges would you like to purchase?" );
           int  number2 = Integer.parseInt( input2 );
               if ("banana".equals(e.getActionCommand())) {
           String  input3 =  JOptionPane.showInputDialog( "How many bananas would you like to purchase?" );
           int  number3 = Integer.parseInt( input3 );
             if ("strawberry".equals(e.getActionCommand())) {
           String  input4 =  JOptionPane.showInputDialog( "Enter weight of strawberries : " );
           int  number4 = Integer.parseInt( input4 );
             if ("lemon".equals(e.getActionCommand())) {
           String  input5 =  JOptionPane.showInputDialog( "How many lemons would you like to purchase?" );
           int  number5 = Integer.parseInt( input5 );
             if ("grape".equals(e.getActionCommand())) {
           String  input6 =  JOptionPane.showInputDialog( "Enter weight of grapes : " );
           int  number6 = Integer.parseInt( input6 );
        /** Returns an ImageIcon, or null if the path was invalid. */
        protected static ImageIcon createImageIcon(String path) {
            java.net.URL imgURL = ShoppingCart.class.getResource(path);
            if (imgURL != null) {
                return new ImageIcon(imgURL);
            } else {
                System.err.println("Couldn't find file: " + path);
                return null;
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
    //Create and set up the window.
            JFrame frame = new JFrame("Shopping Cart");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            ShoppingCart newContentPane = new ShoppingCart();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            newContentPane.setBackground(Color.white);
           frame.setJMenuBar(newContentPane.createMenuBar());
            //Display the window.
            frame.pack();
            frame.setVisible(true);
            String[] initString =
            { /* ...  fill array with initial text  ... */ };
            String[] initStyles =
            { /* ...  fill array with names of styles  ... */ };
            JTextPane textPane = new JTextPane();
            StyledDocument doc = textPane.getStyledDocument();
            addStylesToDocument(doc);
            //Load the text pane with styled text.
            try {
            for (int i=0; i < initString.length; i++) {
            doc.insertString(doc.getLength(), initString,
    doc.getStyle(initStyles[i]));
    } catch (BadLocationException ble) {
    System.err.println("Couldn't insert initial text into text pane.");
    }protected void addStylesToDocument (StyledDocument doc) {
    Style def=new StyleContext ().getStyle (StyleContext.DEFAULT_STYLE);
    Style heading = doc.addStyle ("bold", null);
    StyleConstants.setFontFamily (heading, "SansSerif");
    StyleConstants.setBold (heading, true);
    StyleConstants.setFontSize (heading,30);
    // * The next 3 don't work if that line is commented out
    StyleConstants.setAlignment (heading, StyleConstants.ALIGN_CENTER);
    StyleConstants.setSpaceAbove (heading, 10);
    StyleConstants.setSpaceBelow (heading, 10);
    public static void main() {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();

    CPie wrote:
    o..k.
    I see that you have run out of helpfulness for this session, What the ....? I just told you to add your jtextfield to a jpanel or some other visible component to be seen.
    it is getting late here I will take my business elsewhere tomorrow rather than waiting up for a response which shows you realllly need to find something better to do! And thanks for the help earlier. That was actually useful whereas this wasn't, I'm sure you knew that already,You know that we are all volunteers here. Any time spent here helping you is time away from our friends and families. A little more appreciation is definitely in order or go somewhere else and pay for your help.

  • Error with spring layout -please help me

    hi ppl..
    i had written a piece of code...in which i used spring layout....but it was giving the following error...
    putConstraints(java.awt.Component,javax.swing.SpringLayout.putConstraints) in javax.swing.SpringLayout cannot be applied to putConstraints(java.lang.String,javax.swing.JPanel,int,int,java.lang.String,java.awt.Container)
    The piece of code tat gave the error was
    layout.putConstraints(SpringLayout.WEST,panel1,5, SpringLayout.WEST,contentPane);
    layout.putConstraints(SpringLayout.NORTH,panel1,5,
    SpringLayout.NORTH,contentPane);
    where panel1 is (JPanel) and contentPane is (container)
    please help me....      
    delete

    putConstraints(...)The correct method should be putConstraint(...).

  • I/O errors with certain discs- Windows w/Boot Camp   Please help.

    I wasn't sure which forum to post this problem in. It fits in a few categories, so I apologize if I've gotten it wrong.
    I tried to install a game (Last Half of Darkness, 2005) yesterday, and with about 1/3 of installation complete, I got this message: An error occurred while trying to copy a file: I/O error 23. I had my choice of abort, retry or ignore. After the 1st error message I chose retry. After a bit more of the installation I got another error message: I/O 1117. I then tried to ignore, that didn't work, so I aborted. I tried to install a second time, and even tried a second copy of the same game, then tried to install the 2007 sequel to Last Half, same error messages. After each attempt at installation, I could not get the drive to eject the disc. I eventually did by restarting in OSX. My iMac is 13 months old. In November I had a similar problem with another game, this one from about 2004. In that case, the game installed, but froze a few minutes into playing. Because I couldn't play, and couldn't eject, without a great deal of time and "spinning" noise, I took the computer to the Apple Store to have them look at it. I figured that if it was 2 months from being out of warranty, I should get it fixed right then. Of course all the messing with it they did showed no drive problems. All other CD or DVDs, either commercial or homemade, music, video or games have installed and run just fine.
    An internet search found this: http://support.microsoft.com/kb/891894 I did everything except the clean boot install, and contacting the manufacturer. After changing the transfer mode per these instructions, I could get all of 2/3 of the way through installation before the error messages popped up.
    All drivers are up-to-date according to Windows automatic update and Apple update.
    This is my 4th Mac, so I have little experience with PC/Windows. Can anyone give me a suggestion as to what I can do to install and play these games? Any help greatly appreciated.
    Ruth

    Hi Ruth,
    I sure don't know what the issue is however you might want to go to the Bootcamp forum and post it, maybe someone knows there.
    http://discussions.apple.com/category.jspa?categoryID=237
    Regards,
    Roger

  • Error with SQLServer-JDBC(PLease Help)

    Hello,
    I use before Oracle with Java, but it's first time when I use MS SQL Server, and I made this litle programm Just I want to connect to the Data base, and I get error when I run the programm
    Here you have the file :
    import com.microsoft.jdbc.sqlserver.*;
    import java.sql.*;
    import java.io.*;
    class JDBC_Connect
    public static void main(String args[])
    Connection connexion = null;
    Statement requete = null;
    ResultSet resultSet;
    int i = 1;
    String req1 = "SELECT Name FROM Test";
    try
    String strClassName = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
    String strUrl = "jdbc:microsoft:sqlserver://localhost:1433;"
    + "user=sa; DatabaseName=VJ";
    Class.forName(strClassName);
    connexion = DriverManager.getConnection(strUrl);
    requete = connexion.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
    ResultSet.CONCUR_READ_ONLY);
    resultSet= requete.executeQuery(req1);
    while(resultSet.next())
    System.out.println( resultSet.getString(1));
    i++;
    catch(ClassNotFoundException e) {
    System.err.println("ERREUR : Driver manquant.");
    e.printStackTrace();
    catch(SQLException se) {
    System.out.println("ERREUR SQL : !" + se);
    and here you have the Error that I get
    ERREUR SQL : ! Java.sql.SQLEXception: [Microsoft][SQLServer 2000 Driver for JDBC]
    [SQLServer]Invalid object name 'Test'
    and Test is the name of the Table
    Please If you have an idea about, response my THread, I really need your Help.
    Thanks in advance for your answer.
    Best regards.

    Hi,
    1. When i write the connetion string "con1=DriverManager.getConnection("jdbc:microsoft:sqlserver://ServerName:1433;*Database*=dmo1o2d",user,password);
    Then give message that Connetion is successful. But i put DatabaseName instead of Databse then give error *"java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Cannot open database requested in login 'testcq'*. Login fails.
    2. if i run query like this select * from testcq.sa.test then gives *error "Msg 208, Level 16, State 1, Line 1*
    Invalid object name 'testcq.sa.test'." from MS SQL server management studio
    tescq is Databse name, sa is loging name in MS SQL server mangement stidio to connet to server. test is table name.
    3. if i run query like this select * from testcq.dbo.test then gives all row from MS SQL mangement Studio. But when i rtyr to
    run from java code gives erro "j*ava.sql.SQLException: [Microsoft][SQLServer 2000 Driver for*   
    *   JDBC][SQLServer]Invalid object name 'testcq.dbo.test*'.
    I don't understand where the problem is. It's either in database or in table...all the code, table,database are fine..
    Kindly do needful .....bcoz so many days i m working with this....

  • ERROR with Flash Player Please help!!

    My Roomate was looking at the programs under control panel and well clicked on one of the flash player components and next thing I know it is uninstalled...
    My game chat will not work or sign on due to this and I have tryed everything I can think of but I dont know what I need to install or do to fix this.
    The error I got was:( sorry I do not kow how to do screen shots)
    Adobe Flash Player 10
    An action Script error has ccurred.
    Error.Error#2134: Cannot create SharedObject
                               at flash.net::SharedObject$/getlocal()
                               at njChat_fla::MainTimeline/frame1()
    Please if any one can help with this it would be awesome!

    A few questions:
    what is your operating system & version (also, 32-bit or 64-bit)?
    what is your web browser & version (also, in case of Internet Explorer, 32-bit or 64-bit)?
    what is your Flash Player version (see http://www.adobe.com/software/flash/about/)?
    The error message you listed usually shows a problem of the web application, not on your side.  Unless you have the Flash Player debug version installed.  What does Add/Remove Programs list under Adobe Flash Player?

  • Error with IFRAME portlet - please help!

    We have a portlet that renders in an IFRAME. It has stopped working, and this is the error thrown by the portal. Any help will be rewarded with 1 million dollars cash money! ;-)
    <!--Extended Error Message: A user [Administrator] with ID [1]failed to access URL [http://portal50dev.cei.cox.com:80/portal/server.pt/gateway/PTARGS_0_1_365_201_0_43/http;/portal50dev.cei.cox.com/gadgets/CEI/Custom/General/IndustryNews/gadget.aspx]Error info: [-2147205086: Cannot open page -201 because this page is not owned by the current community.] at com.plumtree.server.CIPTGadgetGateway.GetContent(Object vAppDataStateObject, String vContentID, Int32 vObject, Int32 nClassID, Int32 nPageID, Int32 nCommunityID, String bstrUserInterface, Int32 lMode, Boolean bReturnAllGadgets) at com.plumtree.portalpages.browsing.gateway.GatewayControl.CheckActionSecurityAndExecute(XPHashtable arguments) in C:\UI Source Code\portalpages\dotnet\prod\src\com\plumtree\portalpages\browsing\gateway\GatewayControl.cs:line 158-->

    Jason,
    Please provide add'l background data on this portlet.
    - Did it work previously, and what has changed since then?
    - Does it call data from other portlets?
    (That may include results that the community hosting the 'iframe' based portlet does not have security rights for view access).

  • Help with boot camp PLEASE

    I bought windows 7 earlier installed everything but the problem is my mac did not bring the mac os x dvd/cd so i installed the update 3.0 and 3.1 and 3.2 and i still cant use the internet and im still missing driviers can any one help me out what im missing this is my first time doing this. I tried downloading the the windows support software for the mac but a error comes out.

    Ouch.
    Torrents can have anything, and could come from an OEM disc which are designed only for one motherboard. A retail OS X DVD has uninversal set.
    Sometimes people do need to use wired connection and get network chipset drivers. W/o network, you can't be running and getting updates automatically, hence would not be anywhere near current.
    Windows 7 SP1 is 700MB plus more that came out since.
    Antivirus is a must, whether Microsoft's own Security Essentials which I use on most, or Kasperky (which I also have installed) or another major suite. Apple just published a list and links in today's "Recent Knowledge Base Changes and Updates."
    http://support.apple.com/kb/index?page=articles

  • Simple how-to guide to adding windows 7 64-bit to mavericks with boot camp

    Simple how-to guide to adding windows 7 64-bit to mavericks with boot camp
    *Please note I accept no responsibility for issues occurring from the use of this guide, please use at your risk
    **Please note I do not propose or support using illegal copies of Windows software or licenses
    Required technical skill: minimal
    Required time: approx 1-2 hours
    Required items: Mac, USB drive or DVD-R
    Get a version of Windows 7 64-bit:
    http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_install/canno t-find-digital-river-download-site/66a8439b-0d16-4b70-92f7-1c8486a46ebf
    Windows 7 Downloads are still available.
    Download the appropriate Windows 7 .ISO file which includes Service Pack 1
    (Note: must match what your product key version is for)
    Windows 7 Home Premium 32Bit: http://msft.digitalrivercontent.net/win/X17-58996.iso
    Windows 7 Home Premium 64Bit: http://msft.digitalrivercontent.net/win/X17-58997.iso
    Windows 7 Professional 32Bit: http://msft.digitalrivercontent.net/win/X17-59183.iso
    Windows 7 Professional 64Bit: http://msft.digitalrivercontent.net/win/X17-59186.iso
    Windows 7 Ultimate 32Bit: http://msft.digitalrivercontent.net/win/X17-59463.iso
    Windows 7 Ultimate 64Bit: http://msft.digitalrivercontent.net/win/X17-59465.iso
    Burn this image file (.iso) to a USB drive or DVD-R:
    USB drive:
    Get a blank USB drive with 8 GB+ capacity
    Format this drive to Fat32 (Windows and Mac shared format), this will erase the drive!:
    Finder > Applications > Utitilies > Disk Utility > Partition > 1 > Fat32
    Extract the image file to the drive exposing its files:
    Finder > Applications > Utilites > Boot Camp Assistant
    Click both "Create a Win 7 or later version install disk" and "Download the latest windows support software from Apple" and advance
    Locate your image (iso) file, example: /Users/Christoper/Downloads/X17-58997.iso.download/X17-58997.iso
    Destination disk is your USB flash drive that was formatted to fat32, if it does not appear it may be in the wrong format
    Click continue, this process takes a long time (30 mins - 1.5 hour estimated), it may appear that it is freezing because progress bar stops at times, do not stop it, let it keep running.  If you are unsure it is still going, open finder > click the drive > get info, and look at the size of the files.  Then close finder wait a few seconds, get info again and see that file size is slightly larger.  The final file size was 4+ GB for me
    or DVD-R:
    I have not used a DVD-R but this is how I expect it to work:
    Insert black DVD-R
    Finder > Applications > Utitilies > Disk Utility > Burn
    Locate your image (iso) file, example: /Users/Christoper/Downloads/X17-58997.iso.download/X17-58997.iso
    Partition HD for WIndows 7:
    Finder > Applications > Utilites > Boot Camp Assistant
    Choose the 3rd option Install Windows 7
    It will ask you to select a size of your Harddrive space for Windows OS, this will eat up some of the free space on your Mac HD.  How much space is enough for a Windows OS?  Depends on how many programs you plan to install on it.  If you are just using for surfing web and running MS Office, probably 30-40 GB is enough, and this is what I did.  Remember this space will be used up from your existing HD and not usable when you are in Mac OS.  This process takes about 10 mins I think
    Install Win 7 OS:
    With USB drive in port or DVD in drive, restart laptop. 
    It will bring up the Win 7 installer on boot up
    Select the OS type that you have a registered key for
    It will ask you to find a HD to use for Win 7 OS:
    Select the HD you just created, if you try to continue it will complain that HD is wrong format (because MAC formatted it to a MAC compatible HD, we will fix this)
    Select the HD, there is a button to the right for "advanced" I believe is the text of it.  It will allow you to reformat the drive, choose NTFS which it requires.  Then proceed
    Proceed to setup Win with your preferences
    Type product key from your OS purchase or an existing one that you are moving from another machine
    Select Default Boot Drive:
    By default it selects Windows as your default OS to boot at power up, most people want Mac OSX to be the default, so this can be changed:
    Finder > System Preferences > Startup Disk > select Mac
    Enjoy having Windows on your Mac!

    Why use Boot Camp: Sometimes you need to run a windows only program.  Boot Camp lets you do that with the speed and smoothness of a full windows OS. 
    How is it different from Mac Virtual Machine: A VM allows you to run another OS simultaneously while you are running OSX, while in a window similar to any other application.  A VM is not as fast, smooth, and may have limited screensize/view.   
    Is it possible to have a VM and Boot Camp: Yes, and I do this because sometimes I want to use a VM quickly without shutting down, sometimes I want the advantages of Boot Camp
    How do I get Windows in VM: how-to here:
    https://discussions.apple.com/thread/6043251

  • A Potential Convert Looking for Some Help with Boot Camp

    I posted this in the Macbook Pro forums, and somebody directed me here. Hopefully you can help me with my questions.
    Hello,
    I have been a PC user ever since I can remember. I have loved the operating system and have had a Dell Laptop for 4 years now without any problems at all. I have no qualms with the Windows Operating Systems. But, it is time for me to get a new laptop, as I will soon be heading off to college. I was thinking about getting another PC, as they are significantly cheaper than the lower-end MBP that I would get, but I was also thinking about trying out a Mac. I plan on using this laptop for most of my undergraduate education though, so I don't want to buy something and find out it isn't what I want or I can't use it. So, if you would help me, I would like to ask some questions about the lower-end Macbook Pro, and I may just end up getting one.
    First things first, I am going to be going into engineering, likely mechanical or systems, at either WPI, Northeastern, or Tufts. Ah the experience of choosing colleged. I know Tufts uses AutoCAD, WPI uses SolidWorks, but I am not sure which Northeastern uses. Either way, I most certainly will be using a CAD program. I know that most CAD programs do not work on Macs, so I will likely be using Boot Camp. I have though seen on these boards that the AutoCAD licensing does not work with Boot Camp, or that some users have faced major problems with it. If this is so, then it is highly likely that I will be unable to get a Mac as that program is going to be an absolute necessity. Even if this is just a small percentage of the population, I do not want to find mine being of major issue. For those of you who have gotten it to work, how difficult was the installation, and have you had any issues with AutoCAD or the like? With this in mind, would you even suggest that I get a MBP?
    Another Boot Camp question. I have read many posts on these boards discussing different partitioning options, yet I still am unsure what they all mean. I expect to use the Windows side for more than just AutoCAD. I likely will install some games on it for when I am bored, and Microsoft Office, as I do not wish to spend the extra money buying Office for Mac and I need to have the versatility of Excel that I have heard is not found in the Mac version. What is the difference between these two partitioning types, which would you recommend, and how much storage should I partition if I get a 200GB hard drive?
    Yet another Boot Camp question, sorry for so many of these. My friend who has a Mac lauds it for its security, nobody makes viruses for Macs. As I will most definitively be using Windows in Boot Camp, would this compromise this security? I know it will be Windows, but I still imagine that it would be encoded somewhat differently then normal, but I could be wrong. Also, if it is possible for the Windows portion to get a virus, could that affect the Mac portion?
    Also, I don't use an iPod. I suppose I always thought they were overpriced for what they do. Instead I use an Iriver Clix 2, and I love it. The only thing is, I use Windows Media Player to sync it with my library. I know many have qualms with WMP, but I personally favor it more than iTunes, but that is just me. I do not believe that you can download it for a Mac. If I were to download it for the Windows portion, I am assuming that I would have to switch to Windows in order to listen to my music then, correct? I can also add music to it via Windows Explorer. Can I do so through the "Finder"?
    Finally, is the battery life any different when using Windows than when using Leopard? I will likely be using the Windows portion in the class room.
    Sorry for the long-winded post, but I am certainly hoping that I can get some solid answers to make an educated decision before getting my next laptop. I would like to thank you very much for any help that you are able to give me. I do hope you can help me quickly. Thank you.
    Message was edited by: Pyrojoe

    I can't answer all your questions, especially not anything having to do with CAD.
    I still imagine that [Windows] would be encoded somewhat differently then normal,
    No. Windows is Windows. You will need a good Windows antivirus, firewall and antispyware program. It is unlikely that a Windows virus will infect the Mac partition because, ordinarily, Windows doesn't know how to do anything with the HFS+ formatted Mac partition. However, the existence of products like MacDrive means that it is possible to teach Windows how to write to the Mac partition, so I see no reason why a virus could not be programmed to.
    If I were to download it for the Windows portion, I am assuming that I would have to switch to Windows in order to listen to my music then, correct? I can also add music to it via Windows Explorer. Can I do so through the "Finder"?
    Yes. Probably/yes.
    Finally, is the battery life any different when using Windows than when using Leopard?
    Yes. Windows does not have the battery management that Leopard has. The battery runs down much quicker in Windows.
    You didn't ask, but depending on what kind of engineering you want to study, you may be interested in, or even need to, use some flavour of Unix/Linux. On the one hand, you could always create a partition on a PC--or wipe Windows--and install Linux on the PC. That could even be a good learning experience. On the other hand, Mac OS is Unix, but preinstalled. So with a Mac, you would already have a platform for writing shell scripts, you would have Perl and Python built-in, you would have an IDE (XCode Tools) for C/C++/Objective C/Java as well as gcc and make tools already on the disks which come with the computer, and so on.
    Message was edited by: Mr.Lobotomy

  • I've bought the first season of Death Note on itunes, and i've was never able to download the 11th episode (Assault), it gives me error -50 each time I try. Can anyone please help me with this?

    the title pretty much has my question i guess. it's my first post so i'm not sur if you'll see all of it. I'll just copy paste it anyhow.
    i've bought the first season of Death Note on itunes, and i've was never able to download the 11th episode (Assault), it gives me error -50 each time I try. Can anyone please help me with this?

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • I have apple id but in this week i see this error : you must verify your payment info befor you can make purchases. please help me. i have not credit card but i buying apps with gift card. please help me

    i have apple id but in this week i see this error : you must verify your payment info befor you can make purchases. please help me. i have not credit card but i buying apps with gift card. please help me

    Why do you keep making multiple posts with this issue? You have now posted it three times in the last hour and have two different people helping you in two different threads!
    https://discussions.apple.com/message/18606895
    https://discussions.apple.com/message/18606685
    This is bad internet manners.

  • How can i open my imac with mountain lion in 32 bit. With the Mountain Lion, some important softwares are not functioning. Please help !

    How can i open my iMac with mountain lion in 32 bit. With the Mountain Lion, some important softwares are not functioning. Please help !

    Thx for yr reply. maybe i don't express myself very well. i know ML is 64 bit system. and it does not open up my VPN connection (the VPN connection i am talking here is Cisco and it is only in 32 bits) . i was wondering is there a way my macbook air 11 inch first generation can turn back into its original operation system, so that i can use the VPN connection. THX

Maybe you are looking for