Error with Partition Help please.

Hello!
So when I tried to install Windows on my Mac using Boot Camp Assistant, I set my partiton memory to 25 gigs (I have 150 gigs free) and clicked partition. However it said that it couldent be partitioned because some files couldent be moved. I read up on it and it said that you had to restore your computer and defrag it. I would like to avoid this and was wondering what is the matter. I had other partitions on my mac but I deleted them and it appears that my Mac HD is the only partition in disk utility. What is going wrong?

EDIT:
Some people say to boot with the Install CD and use the Disk utility on that to repair the Hard Drive. Does this delete files and apps?

Similar Messages

  • Getting this error with CS3, help please!

    With those settings can you tell me how to setup my CS3 to render with that issue?
    Thank you!

    The text of the error message has most of the instructions you need to help with this problem.
    First try reducing the Maximum RAM Cache size to 90% or lower.  (The default is 60%.)  It's a bad idea to let AE, or any app, max out the RAM.
    You can try increasing the Maximum Memory Usage, though values over 200% aren't useful.
    For both of those memory values, increment in small values, 10-20% at a time.  Don't ask AE to use more RAM than necessary; bad things like fragmentation and swapping start to occur.
    Also, try the options under the Edit > Purge menu when you see this type of problem.  You'll lose your existing RAM previews, but it will free up memory, which may indeed be fragmented.

  • I can't download OS X LION. it comes up with download error, Can anyone help please

    I can't download OS X LION. it comes up with download error, Can anyone help me please ????????

    Not much detail here. What's the error? If  a connection one, use a wired connection to the Internet, If it says stopped or paused, retry. If something else, try http://www.apple.com/support/mac/app-store/contact.html?form=account

  • 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.

  • Iphone text message errors - can you help please?

    imessages that are sent are coming through from my email address and I cannot receive text messages sent directly to my number.  We are on a family plan.  When a text is being sent to one person, the other person is also getting the text.  Texting only seems to works if sent from an e-mail address and doesn't not send or receive to the phone #.
    Within the iMessage where is states:
    Apple ID : shows correct id
    You can be reached for messages at:
    Error  - with phone # grayed out
    Email - email address listed ok
    Please Help!

    Turned off iMessage and now it's working fine...strange

  • I dont install the wallet sample to java card with gpshell . help please .?

    Hi
    I use Gemalto pc twin Reader.
    I try jdks(1.3.5 , 1.5 , 1.6 versions) for compile
    I use java card kit (2.1.1 , 2..1.2 , 2.2.1 ,2.2.2 versions) for create cap files
    For loadin used gpshell (1.4.2 , 1.4.1 , 1.3.1 versions)
    script
    enable_trace
    establish_context
    card_connect
    select -AID a0000000030000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4f -enc_key 404142434445464748494a4b4c4d4e4f // Open secure channel
    install_for_load -pkgAID a00000006203010C06 -nvCodeLimit 500 -sdAID A000000003000000
    load -file wallet.cap
    install_for_install -priv 02 -AID a00000006203010C0601 -pkgAID a00000006203010C06 -instAID a00000006203010C0601 -nvDataLimit 500
    get_status -element 20                                   
    card_disconnect
    release_context
    I didnt load wallet applet to card. Some time I take install_for_load error , some time install_for_install_and_make_selectable()
    Please help me.
    With jdk 1.3_5 , java card dev kit 2.1.2 and gpshell , I load applet to card but dont install and I take install_for_install_and_make_selectable returns 0x80206A80 (6A80 : Wrong data / incorrect values in command data) error.
    I dont understand why dont loaded the applet to card. Actually I load and install HelloWorld.cap file as this way.
    Additionally , In the wallet applet , the register method used as resigter(bArray , ..... .

    Anybody help me please. It very important. :(

  • Intall Error with No Helpful Information!!!

    SO, I am doing the normal thing and following iTunes instructions to download the update. It takes me to the website and I enter the email address, yada yada yada. Then I get a message saying "Your Current Security Settings Do Not Allow This FIle to be Downloaded."
    That's it. No error code, no help available. Nada.
    I would presume it has something to do with my Explorer security settings, but I am not about to start switching things on and off to try (lest I forget what I've done).
    I have a wireless router, but I would think that any blocking happening there wouldn't show up as a message window.
    I don't have active virus scan running when I try to download.
    I just don't get it.
    Anyone have any suggestions?
    (WinXP Pro, SP1 - but with all the various security downloads, just not SP2).
    Thanks,
    BJ

    well done Ben!
    Elizabeth's post
    b does
    seem to be the charm for one of these ... must trot along and give her a + and get her properly bookmarked ...
    love, b

  • I can't delete my bt emails or move them to folders, other emails from tiscali no problem with, anyone help please

    I can't delete my bt emails or move them to folders, other emails from tiscali no problem with, anyone help please

    I did that and it is currently whirring away, had over 16000 emails as everything got imported when I set emails up (only had this computer 5 days). So will see what happens when it stops doing whatever it is doing. Sorry if I appear stupid but first Mac I have owned so everything a bit new. Have managed to get most things working correctly just can't sort this BT email problem out. Will report back later!

  • 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).

  • 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(...).

  • Trying to Sync...I get message with (-4) error...Help please?

    I tried to sync my ipod with my Windows XP computer today. A message popped up saying "The Ipod cannot be updated. An Unknown error occurred(-4)."
    Can anyone help me?

    Let's see, do you have the latest version of iTunes? Download it here:
    Download iTunes - 7.1.1.5
    You could try switching your firewall and internet security settings to OFF, then try a sync again.
    Also, if neither of those works, you could try, as an experiement, creating a new Windows user account on your computer, then log out of any other users, and try syncing your iPod there. See if you get error -4 again or not.
    Also, a couple of questions...Have you had your iPod iPod for a while with no problems, then this -4 error occur? If so, do you think that it possibly corrilated with the download of any new software on your computer?
    Also, since your OS is "Other OS", are you running on Windows Vista?
    -Kylene

  • .. ERROR CODE 4450 HELP PLEASE!.. I copied my cd/dvd diagnostics here

    Hi, I used to always be able to burn CDs on my computer with iTunes fine and now I keep getting error code 4450 right after the 1st song begins to burn. My computer is not even one year old yet! I tried reading other topics like this one but I could not figure out how to fix the problem myself. The questions were responded with asking to run the cd/dvd diagnostics on iTunes so I did and here they are... PLEASE HELP ASAP! THANK YOU!!!
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    Dell Inc. Dell DM051
    iTunes 7.1.1.5
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.2
    LowerFilters: PxHelp20 (2.0.0.0), DRVMCDB (1.0.0.1), DLACDBHM (1.0.0.1),
    UpperFilters: GEARAspiWDM (2.0.6.1),
    Current user is an administrator.
    Video Display Information:
    RADEON X300 SE 128MB HyperMemory
    RADEON X300 SE 128MB HyperMemory Secondary
    Connected Device Information:
    DiskDrive, ST3160812AS, Bus Type ATA, Bus Address [0,0]
    CDROM, PHILIPS DVD+-RW DVD8801, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    D: PHILIPS DVD+-RW DVD8801, Rev 4D28
    Drive is empty.
    The last failed audio CD burn had error code 4450(0x00001162). It happened on drive D: PHILIPS DVD+-RW DVD8801 on CDR media at speed 12X.

    Yes, here it is... but I have used this same pack of cd's to burn many times before. so i do not think it is the cd, i dont know if that information helps or not...
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    Dell Inc. Dell DM051
    iTunes 7.1.1.5
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.2
    LowerFilters: PxHelp20 (2.0.0.0), DRVMCDB (1.0.0.1), DLACDBHM (1.0.0.1),
    UpperFilters: GEARAspiWDM (2.0.6.1),
    Current user is an administrator.
    Video Display Information:
    RADEON X300 SE 128MB HyperMemory
    RADEON X300 SE 128MB HyperMemory Secondary
    Connected Device Information:
    DiskDrive, ST3160812AS, Bus Type ATA, Bus Address [0,0]
    CDROM, PHILIPS DVD+-RW DVD8801, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    D: PHILIPS DVD+-RW DVD8801, Rev 4D28
    Media in drive is blank.
    Get drive speed succeeded.
    The drive CDR speeds are: 12 16.
    The drive CDRW speeds are: 12.
    The drive DVDR speeds are: 12.
    The drive DVDRW speeds are: 12.
    The last failed audio CD burn had error code 4450(0x00001162). It happened on drive D: PHILIPS DVD+-RW DVD8801 on CDR media at speed 12X.

  • I started to delete my sparseimage file, but stopped it after it deleted 8 of 27k files. After rebooting, I can no longer log into the computer. It says that there is an error with FileVault. Please advise

    Also, I have a time machine back up on an external drive, but im hesitant to use it. I have some VERY important photos that are not  axles up. Does anyone know if unbacked up data is erased when you restore from time machine?  I have already tried the disk utilities to repair the drive and the drive permissions.

    Next step:
    If I use the lvclass directly in my application, IT WORKS with remote debugging:
    If I use the same class in compressed lib, it does not work:
    (then error ocuures as described above)
    Any Idea?
    I have tried several property values of the compressed lib:
    -"Fehlersuche aktivieren" ic checked (enable debug)
    -no excludes (unchecked remove Typedefines...)
    BTW: It does not update the version number of library. I set checkbox to automatically increase version number, but when I insert this lvlibp into small app, and open properties of this lvlibp, it tells me version 1.0.0.0
    I have attached Source Code of small application using lvlibp library (MidSmallUsingClasses)
    and of lvlibp project itself (TestClass)
    Please help me: try to build, include in some application as packed library and remote debug.
    Thank you in advance.
    Please help me.
    Eugen Wiebe
    Bernstein AG
    CLAD - Certified LabView Associate Developer
    Attachments:
    MidSmallUsingClasses.zip ‏194 KB
    TestClass.zip ‏148 KB

Maybe you are looking for

  • Problems with my apple id since iCloud

    I have read here that a lot of people can't get there mobile me mail.  I can't either on the iCloud site but it works fine in my imac mail program.  What I mean is I can send and receive mail thru my me.com email address.  I just can't get it on iClo

  • Frame-by-frame in graphic symbol vs video?

    Hi there, I have several Flash 8 files with a fair amount of lip syncing over approx 300-500 frames. They are all done as graphic symbols on the main timeline. Will it reduce the file size if I import the entire file as a Quicktime video or would put

  • Pod touch 4th Generation Problems?

    now on my 3rd iPod touch 4th Generation and still having the same problems! It's unresponsive to touch, apps crash, too slow, freezes, music skipping etc. I have been to the apple store twice and they've just replaced it and they are not sure why it

  • Would like to place in a an area where I can put widgets

    Hi, I would like to place in a Master-B Page an area on the right where I can put widgets.  I have used the rectangle tool to create the area with an image background but it does not extend to the bottom of the page if I scroll down.  How can I do th

  • Return for Fan Problem (aka mooing)?

    Has anyone actually returned their Macbook for the fans coming on and off (or "mooing")? If so, did you get a moo-free MB? The mooing isn't too bad - and I have hope that software could fix it; but if there are Macbooks that don't moo, man, I would l