"Class can't be instantiated " error message. Help !

Dear Java People,
In trying to do a program that outputs a sound with every button click
I have no compilation errors but a runtime error that says:
"class can't be instantiated"
below is the program and below that the error message
thank you in advance
Norman
import java.util.*;
import java.awt.*;
import javax.swing.*;
import javax.swing.border.*;
import java.applet.*;
import java.awt.event.*;
import java.net.*;
public abstract class MyMusicApplet_1 extends JApplet implements ActionListener, AppletContext
     //AppletContext myAppletContext =   new AppletContext();
     //Iterator i =   myAppletContext.getStreamKeys();
     JButton myJButton;
     AudioClip acSound_1;
     AudioClip acSound_2;
     AudioClip acSound_3;
     AudioClip acSound_4;
     AudioClip acSound_5;
     AudioClip acSound_6;
     AudioClip acSound_7;
     AudioClip acSound_8;
     AudioClip acSound_9;
     JButton myJButtonSound1;
     JButton myJButtonSound2;
     JButton myJButtonSound3;
     JButton myJButtonSound4;
     JButton myJButtonSound5;
     JButton myJButtonSound6;
     JButton myJButtonSound7;
     JButton myJButtonSound8;
     JButton myJButtonSound9;
  public void init()
        try
         acSound_1 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_2 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_3 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_4 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_5 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_6 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_7 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_8 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         acSound_9 = getAudioClip(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore.wrk"));
         catch (MalformedURLException e)
           System.out.println("Error here " );
       Container myContentPane = getContentPane();
       myContentPane.setLayout(new FlowLayout(FlowLayout.RIGHT));
        Dimension buttonSize = new Dimension(190,100);
       Font myFont = new Font("Arial", Font.BOLD,14);
       Border myEdge = BorderFactory.createRaisedBevelBorder();
                //create 1st button's object
                 myJButtonSound1 = new JButton("sound #1");
                myJButtonSound1.addActionListener(this);
               //set the button's border and size, font background and foreground
               myJButtonSound1.setBorder(myEdge);
               myJButtonSound1.setPreferredSize(buttonSize);
               myJButtonSound1.setFont(myFont);
               myJButtonSound1.setBackground(Color.orange);
               myJButtonSound1.setForeground(Color.black);
                //create 2nd button's object
                 myJButtonSound2 = new JButton("sound #2");
                myJButtonSound2.addActionListener(this);
               //set the button's border and size, font, background and foreground
               myJButtonSound2.setBorder(myEdge);
               myJButtonSound2.setPreferredSize(buttonSize);
               myJButtonSound2.setFont(myFont);
               myJButtonSound2.setBackground(Color.blue);
               myJButtonSound2.setForeground(Color.black);
                //create 3rd button's object
                 myJButtonSound3 = new JButton("sound #3");
                myJButtonSound1.addActionListener(this);
               //set the button's border and size, font, background and foreground
               myJButtonSound3.setBorder(myEdge);
               myJButtonSound3.setPreferredSize(buttonSize);
               myJButtonSound3.setFont(myFont);
               myJButtonSound3.setBackground(Color.cyan);
               myJButtonSound3.setForeground(Color.black);
                //create 4th button's object
                 myJButtonSound4 = new JButton("sound #4");
                myJButtonSound4.addActionListener(this);
               //set the button's border and size, font background and foreground
               myJButtonSound4.setBorder(myEdge);
               myJButtonSound4.setPreferredSize(buttonSize);
               myJButtonSound4.setFont(myFont);
               myJButtonSound4.setBackground(Color.pink);
               myJButtonSound4.setForeground(Color.black);
               //create 5th button's object
               myJButtonSound5 = new JButton("sound #5");
              myJButtonSound5.addActionListener(this);
             //set the button's border and size, font background and foreground
             myJButtonSound5.setBorder(myEdge);
             myJButtonSound5.setPreferredSize(buttonSize);
             myJButtonSound5.setFont(myFont);
             myJButtonSound5.setBackground(Color.red);
             myJButtonSound5.setForeground(Color.black);
              //create 6th button's object
               myJButtonSound6 = new JButton("sound #6");
              myJButtonSound6.addActionListener(this);
             //set the button's border and size, font, background and foreground
             myJButtonSound6.setBorder(myEdge);
             myJButtonSound6.setPreferredSize(buttonSize);
             myJButtonSound6.setFont(myFont);
             myJButtonSound6.setBackground(Color.pink);
             myJButtonSound6.setForeground(Color.black);
              //create 7th button's object
               myJButtonSound7 = new JButton("Choice #7");
              myJButtonSound7.addActionListener(this);
             //set the button's border and size, font, background and foreground
             myJButtonSound7.setBorder(myEdge);
             myJButtonSound7.setPreferredSize(buttonSize);
             myJButtonSound7.setFont(myFont);
             myJButtonSound7.setBackground(Color.cyan);
             myJButtonSound7.setForeground(Color.black);
              //create 8th button's object
               myJButtonSound8 = new JButton("Choice #8");
              myJButtonSound8.addActionListener(this);
             //set the button's border and size, font background and foreground
             myJButtonSound8.setBorder(myEdge);
             myJButtonSound8.setPreferredSize(buttonSize);
             myJButtonSound8.setFont(myFont);
             myJButtonSound8.setBackground(Color.yellow);
             myJButtonSound8.setForeground(Color.black);
              //create 9th button's object
               myJButtonSound9 = new JButton("Choice #9");
              myJButtonSound9.addActionListener(this);
             //set the button's border and size, font background and foreground
             myJButtonSound9.setBorder(myEdge);
             myJButtonSound9.setPreferredSize(buttonSize);
             myJButtonSound9.setFont(myFont);
             myJButtonSound9.setBackground(Color.blue);
             myJButtonSound9.setForeground(Color.black);
               //add the buttons to the content pane
               myContentPane.add(myJButtonSound1);
               myContentPane.add(myJButtonSound2);
               myContentPane.add(myJButtonSound3);
               myContentPane.add(myJButtonSound4);
               myContentPane.add(myJButtonSound5);
               myContentPane.add(myJButtonSound6);
               myContentPane.add(myJButtonSound7);
               myContentPane.add(myJButtonSound8);
               myContentPane.add(myJButtonSound9);
      public void actionPerformed(ActionEvent e)
         myJButton = (JButton)e.getSource();
        if(myJButton == myJButtonSound1)
          acSound_1.play();
        if(myJButton == myJButtonSound2)
          acSound_2.play();
        if(myJButton == myJButtonSound3)
          acSound_3.play();
        if(myJButton == myJButtonSound4)
          acSound_4.play();
        if(myJButton == myJButtonSound5)
          acSound_5.play();
         if(myJButton == myJButtonSound6)
           acSound_6.play();
                   if(myJButton == myJButtonSound7)
                     acSound_7.play();
                   if(myJButton == myJButtonSound8)
                     acSound_8.play();
                    if(myJButton == myJButtonSound9)
                      acSound_9.play();
java.lang.InstantiationException
     at sun.reflect.InstantiationExceptionConstructorAccessorImpl.newInstance(InstantiationExceptionConstructorAccessorImpl.java:30)
     at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
load: stan_my_music_applet_1.MyMusicApplet_1.class can't be instantiated.
     at java.lang.Class.newInstance0(Class.java:306)
     at java.lang.Class.newInstance(Class.java:259)
     at sun.applet.AppletPanel.createApplet(AppletPanel.java:566)
     at sun.applet.AppletPanel.runLoader(AppletPanel.java:495)
     at sun.applet.AppletPanel.run(AppletPanel.java:292)
     at java.lang.Thread.run(Thread.java:536)

I also tried:
try
for(int a=0;a<8;a++)
{acSounds[a] = getAudioClip(getCodeBase(),(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore" + (i + 1) + ".wrk")));
and the error message still says:
"MyMusicApplet3.java": Error #: 300 : method getAudioClip(java.net.URL, java.net.URL) not found in class stan_my_music_applet_3.MyMusicApplet3 at line 19
Help !
below is the revised code
Norman
import java.util.*;
import java.awt.*;
import javax.swing.*;
import javax.swing.border.*;
import java.applet.*;
import java.awt.event.*;
import java.net.*;
public class MyMusicApplet3 extends JApplet implements ActionListener
  AudioClip[] acSounds= new AudioClip[9];
  public void init()
   try
        for(int a=0;a<8;a++)
        {acSounds[a] = getAudioClip(getCodeBase(),(new URL ("c:/Program Files/Cakewalk/Cakewalk Pro Audio 9/seashore" + (a + 1) + ".wrk")));
  catch (Exception e)
    System.out.println("Error here " );
        Container myContentPane = getContentPane();
        myContentPane.setLayout(new FlowLayout(FlowLayout.RIGHT));
        myContentPane.add(getButton("1", Color.orange));
        myContentPane.add(getButton("2", Color.blue));
        myContentPane.add(getButton("3", Color.cyan));
        myContentPane.add(getButton("4", Color.pink));
        myContentPane.add(getButton("5", Color.red));
        myContentPane.add(getButton("6", Color.pink));
        myContentPane.add(getButton("7", Color.cyan));
        myContentPane.add(getButton("8", Color.yellow));
        myContentPane.add(getButton("9", Color.blue));
    public void actionPerformed(ActionEvent e)
       String command = e.getActionCommand();
       int index = Integer.parseInt(command)-1;
       acSounds[index].play();
   public JButton getButton(String label, Color fore)
     {          JButton button = new JButton("sound "+label);
                button.setPreferredSize(new Dimension(190,100));
                button.setFont(new Font("Arial", Font.BOLD,14));
                button.setBorder(BorderFactory.createRaisedBevelBorder());
                button.setForeground(fore);
                button.setBackground(Color.orange);
                button.addActionListener(this);
                button.setActionCommand(label);
                return button;
      }//"MyMusicApplet3.java": Error #: 300 :
//method getAudioClip(java.net.URL, java.net.URL) not found in class
// stan_my_music_applet_3.MyMusicApplet3 at line 19, column 24

Similar Messages

  • Applet in ie 5.0: class can not be Instantiated

    Hi!
    My problem is an Applet, which works fine with the appletviewer and with my iExplorer 5.0.
    But when I tried to install my Application (the Applet is part of a J2EE-WebApp) on the tomcat of an other computer, I get the
    "class can not be instantiated"-Error and iE 5.0 only displays a grey box in the size of the Applet. With the appletviewer it works.
    I got the same tomcat, same mySQL and same browser on both computers.
    I also invoked the application running in tomcat on my computer from 2 other computers - on one of them, the Applet was shown, on the other, I only got this grey box.
    The version of the iExplorer was exactly the same.
    What can be wrong?

    Are you sure there is a static method in the Applet class named newAudioChip that takes a URL as an argument?

  • Error with signed applet "class can't be instantiated"

    hi,
    I developed an applet to make a ftp connexion to upload files from the local disk and the applet is already signed. At first I compiled it with the 1.4 version and I got (from other computers) the error "class not found". Then I used the target 1.1 option and now I get the error "class can't be instantiated"
    Do I need any additional code?
    I am using all these imports
    import java.applet.Applet;
    import java.applet.AppletContext;
    import java.awt.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.swing.JComponent;
    import javax.swing.JProgressBar;
    import javax.swing.*;
    Thanks

    go to
    Tools->Internet Options->Advanced
    Look for "Java (Sun)" (normally near Microsoft VM). I uncheck all the Microsoft VM options but am not sure if that is really necessary.
    Also play with Control Panel, you should see "Java Plug-in" in there and be able to configure browsers a bit with that.

  • Class can't be instantiated

    Hi guys
    Just having trouble running this applet for some reason, in any browser. Other applets are working at the minute, so it doesn't look like a prob with the browsers or JVM.
    Heres the code, followed by the error message.
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public abstract class ColourButtons extends Applet
                                              implements ActionListener, MouseListener
         private Button colorButtons[] = new Button[7];
        private Color color = Color.black;
         int x1, y1, x2, y2 = 1;
        public void init()
              setLayout(new BorderLayout(20,20));
              Panel pWest = new Panel();
              pWest.setLayout(new GridLayout(7,1));
              for(int x =0; x <= 6; x++)
                   colorButtons[x] = new Button("   ");
                   pWest.add(colorButtons[x]);
                   add("West",pWest);
                   //add actionlisteners for each button
                   colorButtons[x].addActionListener(this);
                   if(x == 0){
                        color = Color.red;}
                   else if( x==1){
                        color = Color.blue;}
                   else if(x==2){
                        color = Color.green;}
                   else if(x==3){
                        color = Color.yellow;}
                   else if(x==4){
                        color = Color.orange;}
                   else if(x==5){
                        color = Color.black;}
                   else if(x==6){
                        color = Color.white;}
                   colorButtons[x].setBackground(color);
            setBackground(Color.gray);
        public void paint(Graphics g)
              Graphics2D g2 = (Graphics2D)g;
              g2.setColor(color);
              //create Rectangle Object
              Rectangle myRectangle = new Rectangle(x1,y1,x2,y2);
              g2.draw(myRectangle);
                       g2.drawString("HELLO", 150,100);
        public void actionPerformed(ActionEvent a)
            Button button = (Button)a.getSource();
            color = button.getBackground();
            repaint();
        public void mouseClicked(MouseEvent e)
        public void mouseEntered(MouseEvent e)
        public void mouseExited(MouseEvent e)
        public void mousePressed(MouseEvent e)
              x1 = e.getX();
              y1 = e.getY();
        public void mouseReleased(MouseEvent e)
              x2 = e.getX();
              y2 = e.getY();
    }And heres the error message.
    load: ColourButtons.class can't be instantiated.
    java.lang.InstantiationException
    at sun.reflect.InstantiationExceptionConstructorAccessorImpl.newInstance
    (InstantiationExceptionConstructorAccessorImpl.java:30)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at java.lang.Class.newInstance0(Class.java:306)
    at java.lang.Class.newInstance(Class.java:259)
    at sun.applet.AppletPanel.createApplet(AppletPanel.java:566)
    at sun.applet.AppletPanel.runLoader(AppletPanel.java:495)
    at sun.applet.AppletPanel.run(AppletPanel.java:292)
    at java.lang.Thread.run(Thread.java:536)
    Any ideas at what is wrong?
    Any help/pointers greatly appreciated
    Cheers

    ok cheers thats sorted it. For some reason it wanted it to be abstract once i added mouse listener i think.
    Anyway cheers

  • Load: AcidRainApplet.class can't be instantiated

    The error "load: AcidRainApplet.class can't be instantiated" is coming up on this bit of code, any ideas on being rid of it?
    // The "AcidRainApplet" class.
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Date;
    import javax.swing.*;
    public class AcidRainApplet extends Applet implements KeyListener, ActionListener
      public AcidRainApplet ()
        super ();
      int width = 600, height = 450;
      int x = width / 2, y = height - 100, w = 27, h = 40;
      int count = 0;
      boolean playing = true, pause = true;
      Font endFont = new Font ("Arial Black", Font.PLAIN, 36);
      Font ptFont = new Font ("Westminster", Font.PLAIN, 28);
      int points = 0;
      int numRain = 80;
      int maxRain = 200;
      int speed = 5;
      ImageIcon imgi = new ImageIcon ("homer.gif");
      Image ch = imgi.getImage ();
      javax.swing.Timer t;
      public void init ()
        setBackground (Color.black);
        t = new javax.swing.Timer (speed, this);
        this.addKeyListener (this);
        for (int i = 0 ; i < maxRain ; i++)
          rain = new Rain ();
    } // init method
    public void paint (Graphics g)
    super.paint (g);
    g.setColor (Color.white);
    g.drawString ("" + numRain, width - 20, 15);
    if (playing)
    g.drawImage (ch, x, y, null);
    g.setColor (Color.green);
    for (int i = 0 ; i < numRain ; i++)
    g.drawLine (rain [i].x, rain [i].y, rain [i].x, rain [i].y - 10);
    if (!(pause))
    rain [i].y += rain [i].sp;
    if (rain [i].y > height)
    rain [i].x = (int) (Math.random () * width);
    rain [i].y = 0;
    rain [i].sp = (int) (Math.random () * 5) + 2;
    points++;
    else if (rain [i].x >= x && rain [i].x <= x + w && rain [i].y >= y && rain [i].y <= y + h)
    playing = false;
    else
    g.drawString ("PRESS ENTER TO PLAY AGAIN", 180, 400);
    g.setFont (endFont);
    g.setColor (Color.red);
    g.drawString ("GAME OVER", 150, 200);
    g.setFont (ptFont);
    g.setColor (Color.green);
    g.drawString ("Score: " + points, 200, 300);
    t.stop ();
    if (pause)
    g.setColor (Color.green);
    g.drawString ("PRESS ENTER", 200, 200);
    } // paint method
    public void resetVars ()
    x = width / 2;
    y = height - 100;
    count = 0;
    playing = true;
    pause = true;
    points = 0;
    maxRain = 200;
    speed = 5;
    for (int i = 0 ; i < maxRain ; i++)
    rain [i] = new Rain ();
    public class Rain extends Applet
    Rain ()
    int x = (int) (Math.random () * width);
    int y = 0;
    int sp = (int) (Math.random () * 5) + 2;
    Rain rain [] = new Rain [maxRain];
    public void actionPerformed (ActionEvent e)
    repaint ();
    public void keyTyped (KeyEvent k)
    public void keyPressed (KeyEvent k)
    int key = k.getKeyCode ();
    if (!(pause))
    if (key == k.VK_LEFT && x > 0)
    x -= 5;
    if (key == k.VK_RIGHT && x + w < width)
    x += 5;
    if (key == k.VK_DOWN && numRain > 10)
    numRain -= 10;
    repaint ();
    if (key == k.VK_UP && numRain != maxRain)
    numRain += 10;
    repaint ();
    if (key == k.VK_ENTER)
    if (pause)
    pause = false;
    t.start ();
    else if (!(playing))
    resetVars ();
    else
    pause = true;
    t.stop ();
    public void keyReleased (KeyEvent k)
    } // AcidRainApplet class

    Irrespective of the working of your program, I would suggest you remove a lot of weeds and clean the code. That would help you do easier debugging .
    Somethings I can quickly tell are,
    the constructor in AcidRainApplet not useful, Rain implementing Applet not useful, implements KeyListener, ActionListener can be delegated to another class, usage of inner class can be rethinked of delegation can be given a thought. Following code can be thought of :
      class Rain
        private  int x = 0;
        private int y = 0;
        private int sp = 0;
        Rain ()
          reset();
        public int getX() {
          return x;
        public int getY() {
          return y;
        public void setX(int x) {
          this.x = x;
        public void setY(int y) {
          this.y = y;
         public void reset() {
          x = (int) (Math.random () * width);
          y = 0;
          sp = (int) (Math.random () * 5) + 2;   
      }Good wishes,
    Rajesh

  • How can we view the error message numbers in the web ui?

    Dear all,
    How can we view the error message numbers in the web ui? It gives the error but no number.  It is possible to debug in web UI so how can we accomplish this?
    Thanks,
    FK

    Hi  Fakhan,
    You can absolutely do that.
    Check the class: CL_BSP_MESSAGES
    Also if you want to find out the exact Message Class and Message Number, go to table T100, type text in field TEXT, you will get Message Class and Message number in fields ARBGB and MSGNR respectively.
    I hope this helps.
    THanks
    Vishal

  • When I update my nano ipod I get an error message "User ipod cannot be updated.  The disk couldnot be read from or written to."   How can I overcome this error message.

    In the iTunes window, when I update my nano ipod, I get an error message "User ipod cannot be updated.  The disk could not be read from or written to."   How can I overcome this error message.

    Hello there dilip77707,
    It sounds like you are getting this error message that your iPod cannot be read from or written to when you are trying to update your iPod Nano. I recommend the troubleshooting from the following article to help you get that resolved. Its pretty straight forward, just start at the top and work your way down as needed:
     'Disk cannot be read from or written to' when syncing iPod or 'Firmware update failure' error when updating or restoring iPod
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • How can i dispaly an Error Message from Server Side To form

    Hi All,
    How can i dispaly an Error Message from Server Side To form side .
    i try several ways nothing succed.
    i put the error in stack and after call the procedure from form i added
    Qms$Trans_Errors.Display_Messages;
    and because it is an error not informantional error the error screen displayed and enter
    in infinite loop acts like flashing .
    can any one help me please i use C/S Headstart6i and Designer 6i
    thanks alot
    radi

    hi,
    thanks alot lauri.
    yr code work only using information message but in error message its still the same .
    the error window still flash and enter in infinite loop of executeing the same triggers.
    thanks again
    radi

  • Error messages help need asap!!!!

    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly ended

    Hi,
    Welcome to the forum!
    Don't say things like "urgent" or "asap" (as in your title, "error messages help need asap!!!!"). It's rude.
    971848 wrote:
    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly endedIt looks like you're missing a semicolon at the end of line 13; that's why the statement beginning at line 8 can't be understood.
    Also, you store a number in my_val, but never use that number, and you have a variable called tasktotal that's never defined. Should my_val and tasktotal be the same variable?
    Perhaps this is what you want:
    CREATE OR REPLACE FUNCTION
           no_of_task_types (x NUMBER)
    RETURN NUMBER IS
        tasktotal   NUMBER;
    BEGIN
        SELECT  COUNT(distinct t.task_type_no)
        INTO    tasktotal
        FROM    employee e, assignment a, task t
        WHERE   e.employee_id = x
        AND     e.employee_no = a.employee_no
        AND     t.task_id        = a.task_id;          -- ; at end is important
        RETURN tasktotal;
    END;
    /This question doesn't have anything to do with SQL*Plus, so maybe the SQL*Plus forum isn't the best place for it. This is strictly a PL/SQL problem; in the future, post questions like this in the PL/SQL. The FAQ page for that forum, {message:id=9360002} , can really help you.

  • Can't open iMovie - error message won't go away

    The error message reads "The movie File "Pierce Struts" cannot be found. Without this file, the movie cannot play properly."
    And then I either click Cancel or Search.
    I've tried everything and can't get this error message to stop. It won't let me open iMovie. Help.

    reproduce is easy. anytime i click to open an attachment or a pdf file.
    it won't open.  comes up with notice that adobe acrobat has stopped
    working and the program will close.  I can go to READER AND OPEN THE
    FILE BUT NOT FROM ACROBAT X PRO.   RATHER SILLY.
    ERROR MESSAGES ATTACHED
    THANKS FOR THE ASSIST
    Dan Valentine, GRI, e-PRO, MA min
    Broker-Owner
    Valentine Sales & Management
    "Building & Maintaining Rental Portfolios"
    "One-Stop-Shop: AcquireRehabLeaseManagementStrategic Disposition"
    www.ValentineTeam.com
    www.ValentinePropertyManagement.com
    www.InvestAZRentals.com
    12031 N. Cave Creek Rd.
    Phoenix, AZ 85020
    Cell-Text 602-377-0621
    Office- 602-866-0150
    Fax-602-926-8260
    [email protected]

  • "disk can not be erased" error message on Time Machine back up

    I keep getting a "disk can not be erased" error message as I try to restore a recently repaired computer from Time Machine Backup. I did a Disk Verify and Permissions Verify. No help.
    Help!

    Use migrate rather than whatever it is you are doing.. TM has loads of limitations and I suspect you are trying to do something that is not allowed. like recover from an older to a more recent OS..
    Read the info from Pondini about recovery and migrate here.
    http://pondini.org/TM/Home.html
    It is somewhat out of date but still useful.
    No luck tell us what version OS is in the backup and what version is now on the computer.

  • How can i stop an error message that comes up when i am using word? the error message is "word is unable to save the Autorecover file in the location specified. Make sure that you have specified a valid location for Autoreover files in Preferences,-

    how can i stop an error message that comes up when i am using word? the error message is "word is unable to save the Autorecover file in the location specified. Make sure that you have specified a valid location for Autoreover files in Preferences,…"

    It sounds like if you open Preferences in Word there will be a place where you can specify where to store autorecover files. Right now it sounds like it's pointing to somewhere that doesn't exist.

  • How can I solve this error message? Some of your photos, including the photo "IMG_0374.jpg", were not copied to the iPad "(my name's) iPad" because they cannot be displayed on your iPad.

    how can I solve this error message? "Some of your photos, including the photo “IMG_0374.jpg”, were not copied to the iPad “(my name’s) iPad” because they cannot be displayed on your iPad."
    There were 273 photos in the event syncing from my Mac, but only the last 103 made it to the ipad. Most of the photos were taken by an iphone. I would appreciate any thoughts or insights - thanks.

    Adrian-
    That error message suggests the photo is somehow corrupt.
    Do you have the Apple Camera Connection Kit?  You can set up a USB thumb drive with MS-DOS FAT-32 format and copy your photos to it into a folder named DCIM.  Assuming they have an 8 character plus suffix name, the iPad will recognize them and give you the option of transferring them via the Kit's USB adapter.
    Once they are transferred, you can find out if there is a problem with any.
    Fred

  • Hello dps team,  A few weeks ago we renewed our dps licence. Now we want to release our newest issue but we can't. Following error message appears "At the attempt to release the folio creates an error. The process could not be started. Please try again la

    Hello dps team,
    A few weeks ago we renewed our dps licence. Now we want to release our newest issue but we can't. Following error message appears "At the attempt to release the folio creates an error. The process could not be started. Please try again later."
    Is there a problem with our dps version or any maintenance work at the servers from Adobe?
    Best,
    Oliver

    Hi Oliver,
    Please login to your DPS dashboard and contact support by clicking "Contact support" at the bottom left
    Thanks
    Lohrii

  • I can't update itunes, error message comes up, can't update the older version of bonjour contact your technical support

    I can't update itunes, error message comes up, can't update the older version of bonjour contact your technical support

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Bonjour entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

Maybe you are looking for

  • How can I get specific files back from my Time Machine backup?

    I wanted to make a fresh install on my MacBook Pro, in order to only have Java 8 instead of any older Java versions. So far so good. But now I want to get specific files/libraries from my external backup (USB): One Parallels Virtual Machine My old ma

  • (CES2014)MSI Best Laptop for CAD & 3D Modeling photo gallery

    Las Vegas, NV, United States,CES2014,1/6~9 GT60 2OK 3K IPS Edition (K3100M) & GT70 2OL (K4100M) GT70 2OL (K4100M) Best Laptop for CAD & 3D Modeling GT70 2OL demo stration. GT60 2OK 3K IPS Edition (K3100M) Best Laptop for CAD & 3D Modeling More new ph

  • IMac to Mac book

    Can I connect my Macbook to my iMac via firewire to transfer my iTunes library, playlists and all? Thanks

  • Can't export date book from palm desktop 4.2.1

    When I try exporting my date book. Palm crashes. I am using 4.2.1 RevD, on a Mac running OS 10.5.7.  I have deleted the prefs, and duplicated the Palm folder. When I try exporting vCal, it crashes after 400 dates (approximately). When I try exporting

  • Epos2 and XNET module NI-9862

    HI every body, I'm trying to communicate NI9862 in a CRIO with a epos2 maxon position controler. I've found a lot of example with the NI-9853 in CAN communication, How can I adapt these examples to my module 9862? Do somebody know some example in the