Java Version 6 Update 24 Update Problem. Please help!

I am using Google Chrome, running on Windows 7 Home Premium, and have tried to update my Java to the latest version (V6.24), but no matter how many times I download the file, it does not update!
The file will download, but when trying to run and install the setup, I get the error message:
Error - Java (TM) Installer
Download failed from=http://javadl.sun.com/webapps/download/GetFile/1.6.0_24-b71/windows-i586/jre1.6.0_24-c-l.msi, to= C:\Users\XX\AppData\LocalLow\Sun\Java\jre1.6.0_24\jre1.6.0_24-c-l.msi
So then I tried downloading the offline installation of Java, but the same thing happens, or it will load and the installation freezes.
Have tried to completely remove Java with Windows Installer Cleanup Utility and JavaRa, but same problem keeps happening.
I don't understand what is wrong and why it is not updating properly. It's causing me problems like not loading application programs that require Java!
If anyone has any answers please help!
Thank you.

similar to
http://support.mozilla.com/es/questions/788422#answer-142414?

Similar Messages

  • Updating iPhone Problem please help!!

    Hi I was hoping someone could help me with a small problem I am having while trying to update my iPhone (16GB 3G). When I go to update it everything goes fine and then when I get to the part of the process involving "backing up" the iPhone it takes a long time and seems to stop about halfway through. Is there anyway I can skip the backup process? I don't have the time to let my phone sit for 5 hours to update! haha so I'm stuck with 2.0 right now!! I really want 2.2
    Thanks so much,
    Jason

    The last version of iOS to be supported is 4.2.1. If apps require something higher, you will not be able to use them. The only way around this is to buy a new phone. You can NOT install iOS 5 on an iPhone 3G.

  • Updated feed problem, PLEASE help, tried everything....

    Ive seen this same issue here in forums with no solution:
    Service Provider hosting my old feed was going down in a month...
    I placed the correct update tag in my feed to point to the new feed....
    1 month went by, the server went down...
    my new feed is valid at feedvalidator.org...
    http://www.lmsound.com/649/podcasts/649filmsPodcast.xml
    i have also set it up at:
    feed://feeds.feedburner.com/649films
    In iTunes podcasts, you can find me, however it is still pointing to the old address....
    ANY help would ever so sincerely be appreciated... I have tried everything i can think of... I was concerned about loosing my subscribers, and now i am totally lost here....
    Message was edited by: 649films
    wanted to list the feedburner address as well

    odd...I just pinged your feed using the FEEDID and got a "Podcast ping recieved" that shows your old URL.
    https://phobos.apple.com/WebObjects/MZFinance.woa/wa/pingPodcast?id=121942193
    This is your podcast right?
    http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=121942193
    Possibility again that if iTunes didn't grab the feed with the <Itunes:new-feed-url> tag, it never updated its database.
    It's tricky with your existing subscribers. Theoretically, if they subscribed before the old server went down, they should have received a copy of the new XML which would include the new feed url and their iTunes client would have updated itself to point to the new feed...granted they started up iTunes before the old server went down.
    If they subscribed after the server went down, (i.e today), they won't get any episodes (it's still pointing to the old server).
    You only have really two options to fix iTunes to point at the correct URL:
    1) See if you can get access to the old server again at the old URL, put a copy of your new feed there which includes the <itunes:new-feed-url> tag. Then ping iTunes...sit back and wait until you can verify that iTunes changed the url it has in its database to the new one. You can subscribe to the feed and check the "show description" or continue to ping iTunes until it shows the correct URL in the "podcast ping received" results.
    2) Remove the podcast and re-submit. Click the "report a concern" button for your feed in iTunes and choose the option to remove the podcast. Then re-submit.
    Itunes provides no real way of knowing how many subscribers you have nor does it keep a list of subscribers. They are just playing matchmaker...just providing a list of podcasts and allowing people to subscribe to the URL you have listed. Once they have subscribed, they don't go back to the iTunes directory...they go straight to your URL.
    Some podcast services like "Feedburner" can keep track of metrics and can give you data on subscribers and episodes downloaded.
    Erik

  • UPDATE TO PROBLEM PLEASE HELP: validator on af:inputText not being called

    I have the following inputText component bound to a validator method on my page:
    <af:inputText inlineStyle="width:650px" id="txtDescription"
    binding="#{backing_osQualAdd.txtDescription}"
    validator="#{backing_osQualAdd.validate}"/>
    Below is the validate method:
    public void validate(FacesContext facesContext,
    UIComponent uiComponent, Object object)
    // Add event code here...
    System.out.println("test");
    Upon submit (partial submit) of the page this method does not get called. Why is this?

    I found what the problem is but now I have another problem. The problem was if there is nothing in the inputText then the validation method won't be called. But the problem with this is I can't just set required="true" on the inputText because I'm using a button that does a partialSubmit to fill in the inputText.
    So basically what I'm saying is I need to create my own required validation. Is this even possible?

  • Java rotate, drag RoundRectangle2D problem please help me!!!

    Hi,
    i have 2 program, the first program can rotate a RoundRectangle2D, and the secend program can create new RoundRectangle2D and drag them around.
    The problem is that i want the rotate and the drag functions in one file, could any wone plese help me with this??
    The code has been orginally written by phillips75. i have modified it.
    The first program that rotates a Rectangle2D
    package appli;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.util.*;
    import java.util.List;
    import javax.swing.*;
    import javax.swing.event.MouseInputAdapter;
    public class minappli extends JApplet
    Vector shape = new Vector();
    class axel extends JPanel
    axel selectedRect;
    //RoundRectangle2D r;
    RectangularShape r;
    RectangularShape rsss;
    AffineTransform xform;
    int theta;
    public axel()
    shape.addElement(new axel(40, 50, 50, 60));
    shape.addElement(new axel(150, 100, 50, 60));
    shape.addElement(new axel(40, 150, 50, 60));
    setBackground(Color.white);
    addMouseListener(new RectSelector(this));
    public axel (int x, int y, int w, int h)
    r = new RoundRectangle2D.Double(x, y, w, h, 20, 20);
    xform = new AffineTransform();
    theta = 0;
    public void drawdd (Graphics2D g2)
    AffineTransform orig = g2.getTransform();
    if (!xform.isIdentity())
    g2.setTransform(xform);
    g2.draw(r);
    g2.setTransform(orig);
    public void rotateRect()
    double cx = r.getCenterX();
    double cy = r.getCenterY();
    theta = theta + 5;
    xform.setToRotation(Math.toRadians(theta), cx, cy);
    public void paintComponent(Graphics g)
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D)g;
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
    RenderingHints.VALUE_ANTIALIAS_ON);
    //int w = getWidth();
    //int h = getHeight();
    axel rs;
    for(int i = 0; i < shape.size(); i++)
    rs = (axel) shape.get(i);
    // System.out.println(" rs " + rs + " rsss " + konam);
    if (rs == selectedRect)
    g2.setPaint(Color.yellow);
    else
    g2.setPaint(Color.black);
    rs.drawdd(g2);
    class RectSelector extends MouseInputAdapter
    axel rotationPanel;
    RectangularShape selectedShape;
    axel rs;
    Point start, offset;
    boolean addCircle, addSquare, dragging;
    final int size = 50;
    public RectSelector(axel fp)
    rotationPanel = fp;
    offset = new Point();
    addCircle = false;
    addSquare = false;
    dragging = false;
    public void mousePressed(MouseEvent e)
    RectangularShape rssss = null;
    Point p = e.getPoint();
    rssss = new RoundRectangle2D.Double(p.x - size / 2, p.y - size / 2, size, size, 20, 20);
    for (int i = 0; i < shape.size(); i++)
    rs = (axel) shape.get(i);
    //System.out.println("rs" + rs);
    if (rs.r.contains(p))
    selectedRect = rs;
    repaint();
    break;
    public void mouseReleased(MouseEvent e)
    selectedShape = null;
    dragging = false;
    public void mouseDragged(MouseEvent e)
    if (dragging)
    Point p = e.getPoint();
    if (selectedShape != null)
    // dragging a shape
    Rectangle r = selectedShape.getBounds();
    r.x = p.x - offset.x;
    r.y = p.y - offset.y;
    selectedShape.setFrame(r);
    rotationPanel.repaint();
    public JPanel getUIpanelg()
    final JButton rotateButton = new JButton("Rotate");
    final JButton box = new JButton("Box");
    rotateButton.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    if (e.getSource() == rotateButton)
    selectedRect.rotateRect();
    repaint();
    JPanel panel = new JPanel();
    panel.add(rotateButton);
    panel.add(box);
    return panel;
    public void init()
    axel rp = new axel();
    Container cp = getContentPane();
    cp.setLayout(new BorderLayout());
    cp.add(rp.getUIpanelg(), "South");
    cp.add(rp);
    public static void main(String[] args)
    JApplet applet = new minappli();
    JFrame f = new JFrame("Test");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(applet);
    f.setSize(400,300);
    f.setLocation(200,200);
    applet.init();
    f.setVisible(true);
    The second program that creates new Rectangle2D and drags it around
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.util.*;
    import java.util.List;
    import javax.swing.*;
    import javax.swing.event.*;
    public class axel extends JApplet
    Vector shape = new Vector();
    int theta;
    RoundRectangle2D r;
    AffineTransform xform;
    class axel1 extends JPanel
    axel1 selectedRect;
    RectSelector action;
    public axel1()
    //shape.addElement(new axel1(40, 50, 50, 60));
    //shapeList.addElement(new FlowPanel(150, 100, 50, 60));
    //shapeList.addElement(new FlowPanel(40, 150, 50, 60));
    setBackground(Color.white);
    action = new RectSelector(this);
    addMouseListener(action);
    addMouseMotionListener(action);
    public void drawdd (Graphics2D g2)
    AffineTransform orig = g2.getTransform();
    if (!xform.isIdentity())
    g2.setTransform(xform);
    g2.draw(r);
    g2.setTransform(orig);
    public axel1 (int x, int y, int w, int h)
    r = new RoundRectangle2D.Double(x, y, w, h, 20, 20);
    xform = new AffineTransform();
    theta = 0;
    public void rotateRect()
    double cx = r.getCenterX();
    double cy = r.getCenterY();
    System.out.println("fffffffffffff");
    theta = theta + 5;
    xform.setToRotation(Math.toRadians(theta), cx, cy);
    public void paintComponent(Graphics g)
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D) g;
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
    RenderingHints.VALUE_ANTIALIAS_ON);
    RoundRectangle2D rs;
    for (int i = 0; i < shape.size(); i++)
    //rs = (RectangularShape) shape.get(i);
    g2.draw((RectangularShape) shape.get(i));
    //rs = (axel1) shape.get(i);
    //System.out.println("skapar " + i + "hahaaha " + rs);
    //if (rs == selectedRect)
    // g2.setPaint(Color.red);
    //else
    // g2.setPaint(Color.black);
    public void clear()
    shape.clear();
    repaint();
    class RectSelector extends MouseInputAdapter
    axel1 rotationPanel;
    RectangularShape selectedShape;
    final int size = 50;
    Point start, offset;
    boolean addCircle, addSquare, dragging;
    axel1 rs;
    public RectSelector(axel1 fp)
    // lista = (Vector) flowPanel.getShapeList();
    shape.addElement(new RoundRectangle2D.Double(40, 50, 50, 60, 20, 20));
    rotationPanel = fp;
    offset = new Point();
    addCircle = false;
    addSquare = false;
    dragging = false;
    public void mousePressed(MouseEvent e)
    RectangularShape rssss = null;
    Point p = e.getPoint();
    if (addCircle)
    rssss = new Ellipse2D.Double(p.x - size / 2, p.y - size / 2, size, size);
    if (addSquare)
    rssss = new RoundRectangle2D.Double(p.x - size / 2, p.y - size / 2, size, size, 20, 20);
    if (rssss != null)
    shape.addElement(rssss);
    rotationPanel.repaint();
    addCircle = addSquare = false;
    return;
    // or are we selecting an existing shape to drag
    for (int i = 0; i < shape.size(); i++)
    rssss = (RectangularShape) shape.get(i);
    if (rssss.contains(p))
    System.out.println("nu " + i + " " + rssss);
    selectedShape = rssss;
    Rectangle r = rssss.getBounds();
    offset.x = p.x - r.x;
    offset.y = p.y - r.y;
    dragging = true;
    break;
    public void mouseReleased(MouseEvent e)
    selectedShape = null;
    dragging = false;
    public void mouseDragged(MouseEvent e)
    if (dragging)
    Point p = e.getPoint();
    if (selectedShape != null)
    // dragging a shape
    Rectangle r = selectedShape.getBounds();
    r.x = p.x - offset.x;
    r.y = p.y - offset.y;
    selectedShape.setFrame(r);
    rotationPanel.repaint();
    public JToolBar getToolBar()
    JToolBar toolBar = new JToolBar();
    ActionListener l = new ActionListener()
    public void actionPerformed(ActionEvent e)
    JButton button = (JButton) e.getSource();
    String ac = button.getActionCommand();
    if (ac.equals("Single arrow"))
    addCircle = true;
    if (ac.equals("Box"))
    addSquare = true;
    if (ac.equals("Clear"))
    rotationPanel.clear();
    if (ac.equals("Rotate"))
    //double cx = r.getCenterX();
    //double cy = r.getCenterY();
    System.out.println("fffffffffffff");
    //theta = theta + 5;
    //xform.setToRotation(Math.toRadians(theta), cx, cy);
    // repaint();
    JButton button = makeButton("Single arrow", "Add a arrow", l);
    toolBar.add(button);
    button = makeButton("Box", "Add a box", l);
    toolBar.add(button);
    button = makeButton("Clear", "Clears everything", l);
    toolBar.add(button);
    button = makeButton("Rotate", "Rotate a shape", l);
    toolBar.add(button);
    return toolBar;
    private JButton makeButton(String actionCommand, String toolTipText, ActionListener l)
    JButton button = new JButton(actionCommand);
    button.setActionCommand(actionCommand);
    button.setToolTipText(toolTipText);
    button.addActionListener(l);
    return button;
    public void init()
    axel1 flowPanel = new axel1();
    RectSelector action = flowPanel.action;
    Container cp = getContentPane();
    cp.setLayout(new BorderLayout());
    cp.add(action.getToolBar(), "South");
    cp.add(flowPanel);
    public static void main(String[] args)
    JApplet applet = new axel();
    JFrame f = new JFrame("test");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(applet);
    f.setSize(500, 400);
    f.setLocation(200, 200);
    applet.init();
    f.setVisible(true);
    The

    New code:
    Class Arrow
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class GraphicArrow  extends JComponent
        GeneralPath arrow   =  new GeneralPath();
        Stroke dashStroke   =  new BasicStroke(1, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND, 10f, new float[] {4f, 4f}, 0f);
        Paint gradientPaint =  new GradientPaint(-30, 0, Color.red, 10, 0, Color.yellow);
        GraphicArrow selectedArrow;
        public void paintComponent(Graphics _g)
            super.paintComponent(_g);
            Graphics2D g2 = (Graphics2D) _g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                               RenderingHints.VALUE_ANTIALIAS_ON);
            AffineTransform graphicsDefaultTransform = g2.getTransform();
            AffineTransform xform = new AffineTransform();
            Rectangle bounds = arrow.getBounds();
            Point startPoint = new Point();
            xform.translate(startPoint.x - bounds.x, startPoint.y - bounds.y);
            //g2.transform(xform);
            //g2.setStroke(dashStroke);
            //g2.draw(arrow);
             //g2.setTransform(graphicsDefaultTransform);
            //g2.transform(xform);
            //g2.setPaint(gradientPaint);
            //g2.fill(arrow);
            xform.translate(bounds.width + 20, 0);
            xform.translate(bounds.width + 20, 0);
            //g2.setTransform(graphicsDefaultTransform);
            g2.setPaint(gradientPaint);
            g2.transform(xform);
            g2.rotate(Math.PI / 1);
            g2.fill(arrow);
        public GraphicArrow (int x, int y)
            //Value before -20, -10
            arrow.moveTo(x, y);
            arrow.lineTo(0, -10);
            arrow.lineTo(0, -20);
            arrow.lineTo(20, 0);
            arrow.lineTo(0, 20);
            arrow.lineTo(0, 10);
            arrow.lineTo(-20, 10);
            arrow.lineTo(-20, -10);
            addMouseListener(new MouseAdapter()
                Rectangle hitRect = new Rectangle(0, 0, 5, 5);
                public void mouseClicked(MouseEvent e)
                    Graphics2D g = (Graphics2D) getGraphics();
                    AffineTransform xform = new AffineTransform();
                    hitRect.x = e.getX();
                    hitRect.y = e.getY();
                    Rectangle bounds = arrow.getBounds();
                    Point startPoint = new Point();
                    //System.out.println("hh " + (bounds.x  ) );
                    xform.setToTranslation(startPoint.x - bounds.x + 2 * bounds.width + 2 * 20, startPoint.y - bounds.y);
                    xform.rotate(Math.PI / 1);
                    g.setTransform(xform);
                    if (g.hit(hitRect, arrow, false))
                        System.out.println("Traff " + xform);
        public static void main(String args[])
            Frame frame = new Frame("Arrow");
            frame.add(new GraphicArrow(0, 0));
            frame.setBackground(Color.white);
            frame.setSize(new Dimension(400, 350));
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
    }The shape class:
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.util.*;
    import java.util.List;
    import javax.swing.*;
    import javax.swing.event.MouseInputAdapter;
    import java.awt.*;
    public class Box extends JApplet
        Vector shape      = new Vector();
        Vector arrowArray = new Vector();
        int theta;
        class axel extends JPanel implements KeyListener
            GeneralPath arrow   = new GeneralPath();
            Stroke dashStroke   = new BasicStroke(1, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND, 10f, new float[] {10f, 10f}, 5f);
            Paint gradientPaint = new GradientPaint( -30, 0, Color.red, 10, 0, Color.yellow);
            boolean delete_box, addSquare, addArrow, dragging;
            axel selectedRect;
            RectangularShape boxen;
            AffineTransform xform;
            RectSelector action;
            String texten;
            public axel()
                shape.addElement(new axel("Text1", 40, 50, 50, 60));
                shape.addElement(new axel("Text2", 150, 100, 50, 60));
                shape.addElement(new axel("Text3", 40, 150, 50, 60));
                setBackground(Color.white);
                action = new RectSelector(this);
                addMouseListener(action);
                addMouseMotionListener(action);
                addKeyListener(this);
            public axel(String text, int x, int y, int w, int h)
                texten = text;
                boxen  = new RoundRectangle2D.Double(x, y, w, h, 20, 20);
                xform  = new AffineTransform();
                theta  = 5;
            public void rita(Graphics2D g2)
                double cx = boxen.getCenterX();
                double cy = boxen.getCenterY();
                int mus_x =(int) cx;
                int mus_y =(int) cy;
                AffineTransform orig = g2.getTransform();
                if (!xform.isIdentity())
                    g2.setTransform(xform);
                g2.fill(boxen);
                g2.setColor(Color.black);
                g2.setFont(new Font("Helvetica", Font.BOLD, 12));
                g2.drawString(texten, mus_x + -11, mus_y + 5);
                g2.draw(boxen);
                g2.setTransform(orig);
            public void paintComponent(Graphics g)
               super.paintComponent(g);
               Graphics2D g2 = (Graphics2D) g;
               Image bild = getImage(getDocumentBase(), "images.jpg");
               g2.drawImage(bild, 0, 0, this);
               g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                   RenderingHints.VALUE_ANTIALIAS_ON);
               //Draw the Shapes
               for (int i = 0; i < shape.size(); i++)
                   axel rsh = (axel) shape.get(i);
                   if (rsh == selectedRect)
                       g2.setStroke(dashStroke);
                       g2.setPaint(Color.green);
                   else
                       g2.setStroke(new BasicStroke(0));
                       g2.setPaint(Color.yellow);
                   rsh.rita(g2);
               //Draw the Arrows
               for (int i = 0; i < arrowArray.size(); i++)
                   GraphicArrow selectedArrow;
                   GraphicArrow arrowen = (GraphicArrow) arrowArray.get(i);
                   arrowen.paintComponent(g);
            public void resizen()
                Rectangle r      = boxen.getBounds();
                double    width  = boxen.getWidth()+2;
                double    height = boxen.getHeight()+2;
                boxen.setFrame(r.x, r.y, width, height);
            public void rotateRect()
                double cx = boxen.getCenterX();
                double cy = boxen.getCenterY();
                theta = theta - 5;
                xform.setToRotation(Math.toRadians(theta), cx, cy);
            public void rotateRect_right()
                double cx = boxen.getCenterX();
                double cy = boxen.getCenterY();
                theta = theta + 5;
                xform.setToRotation(Math.toRadians(theta), cx, cy);
            public void keyPressed(KeyEvent e) {
                System.out.println("Test1");
                if (e.isShiftDown()) {
                    System.out.println("Test3");
                if (e.getKeyCode() == KeyEvent.VK_DELETE) {
                    System.out.println("Test2");
            public void keyReleased(KeyEvent e) {
            public void keyTyped(KeyEvent e) {
            class RectSelector extends MouseInputAdapter {
                axel rotationPanel;
                RectangularShape selectedShape;
                axel rs;
                Point offset;
                final int size = 50;
                public RectSelector(axel fp)
                    rotationPanel  = fp;
                    offset         = new Point();
                    delete_box     = false;
                    addSquare      = false;
                    addArrow       = false;
                    dragging       = false;
                public void mousePressed(MouseEvent e) {
                    Point p = e.getPoint();
                    //New Box skapas
                    if (addSquare)
                      shape.addElement(new axel("text5", p.x, p.y, 50, 60));
                      rotationPanel.repaint();
                      addSquare = false;
                      return;
                    //New Arrow skapas
                    if (addArrow)
                      arrowArray.addElement(new GraphicArrow(p.x, p.y));
                      rotationPanel.repaint();
                      addArrow = false;
                      return;
                    for (int i = 0; i < shape.size(); i++)
                        rs = (axel) shape.get(i);
                        if (rs.boxen.contains(p))
                            if (delete_box) {
                                shape.removeElementAt(i);
                                delete_box = false;
                                repaint();
                            Rectangle r = rs.boxen.getBounds();
                            offset.x = p.x - r.x;
                            offset.y = p.y - r.y;
                            selectedRect = rs;
                            selectedShape = rs.boxen;
                            dragging = true;
                            repaint();
                        //else
                        //    System.out.println("press does not work " + delete_box + i + rs.boxen.contains(p));
                public void mouseReleased(MouseEvent e)
                    int x = e.getX();
                    int y = e.getY();
                    selectedShape = null;
                    dragging = false;
                    setCursor(new Cursor(Cursor.DEFAULT_CURSOR) );
                    //Graphics2D g3  = (Graphics2D) getGraphics();
                    //g3.setStroke(new BasicStroke(0));
                    //g3.setPaint(Color.yellow);
                public void mouseDragged(MouseEvent e)
                    if (dragging) {
                        Point p = e.getPoint();
                        if (selectedShape != null) {
                            setCursor(new Cursor(Cursor.MOVE_CURSOR) );
                            Rectangle r = selectedShape.getBounds();
                            System.out.println("dragging " + p + p.x + " " + p.y);
                            r.x = p.x - offset.x;
                            r.y = p.y - offset.y;
                            selectedShape.setFrame(r);
                            repaint();
                public void mouseMoved(MouseEvent e)
            public JPanel panelen()
                final JButton rotate_left  = new JButton("Rotate left");
                final JButton rotate_right = new JButton("Rotate right");
                final JButton arrow        = new JButton("New Arrow");
                final JButton box          = new JButton("New Box");
                final JButton delete       = new JButton("Delete");
                final JButton resize       = new JButton("Resize");
                rotate_left.setCursor(new Cursor(Cursor.HAND_CURSOR) );
                rotate_right.setCursor(new Cursor(Cursor.HAND_CURSOR) );
                arrow.setCursor(new Cursor(Cursor.HAND_CURSOR) );
                box.setCursor(new Cursor(Cursor.HAND_CURSOR) );
                delete.setCursor(new Cursor(Cursor.HAND_CURSOR) );
                resize.setCursor(new Cursor(Cursor.HAND_CURSOR) );
                rotate_left.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                      if (e.getSource() == rotate_left && selectedRect != null)
                         selectedRect.rotateRect();
                         repaint();
                rotate_right.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                      if (e.getSource() == rotate_right && selectedRect != null)
                         selectedRect.rotateRect_right();
                         repaint();
                arrow.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                      addArrow = (e.getSource() == arrow);
                box.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                      addSquare = (e.getSource() == box && selectedRect != null);
                delete.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent e)
                       delete_box = (e.getSource() == delete);
                resize.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                      if (e.getSource() == resize && selectedRect != null)
                         selectedRect.resizen();
                         repaint();
                JPanel panel = new JPanel();
                panel.setBackground( Color.orange );
                panel.add(rotate_left);
                panel.add(rotate_right);
                panel.add(arrow);
                panel.add(box);
                panel.add(delete);
                panel.add(resize);
                return panel;
        public void init() {
            axel rp = new axel();
            Container cp = getContentPane();
            cp.setLayout(new BorderLayout());
            cp.add(rp.panelen(), "South");
            cp.add(rp);
        public static void main(String[] args)
            JApplet applet = new Box();
            JFrame f = new JFrame("Test");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(applet);
            f.setSize(600, 400);
            f.setLocationRelativeTo(null);
            applet.init();
            f.setVisible(true);

  • While trying to update Adobe Reader XI 10.0.06 to 10.0.07 on my laptop running W7 Home Premium x 64, I get error message 2203. The same occurs if I try to uninstall before manually install the new version. Can you please help?

    Hello,
    While trying to update Adobe Reader XI 10.0.06 to 10.0.07 on my laptop running W7 Home Premium x 64, I get error message 2203. The same occurs if I try to uninstall before manually install the new version. Can you please help?
    PS.- Thank you very much for your Support in trying to solve a problem created by yourselves.
    Message was edited by: Juan Verano

    Is there anything else beside the number 2203?
    Try removing the current Reader using http://labs.adobe.com/downloads/acrobatcleaner.html, then install 11.0.07 from http://get.adobe.com/reader/enterprise/

  • HT4623 hi..i just bought an iphone 5 yesterday 32GB..and now when i am trying to update the software..it says the following: unable to check for update/an error occurred while cheking for a software update...please help me..is it a problem in my new iphon

    hi..i just bought an iphone 5 yesterday 32GB..and now when i am trying to update the software..it says the following: unable to check for update/an error occurred while cheking for a software update...please help me..is it a problem in my new iphone??or it's just an temporary error in the apple software center???

    Lyndsay237 wrote:
    This device does not have a sim card in it. Could this be the reason or am I missing something when I am trying to update.
    Yes. You can't update or restore any GSM iPhone without a valid sim card installed in the phone. The sim card need not be activated, but it must be valid & present. If you want to update, you need to get a sim card.

  • I am still trying to update my ipod touch 4 to the iOS 6 version. It is on the 4.3.5 (8L1) version. When I go to settings-General-it just says About and nothing about an update. I have no idea how to update it! Please help!

    I am still trying to update my Ipod touch 4 to the iOS 6 version. It is on the 4.3.5 (8L1) version. When I go to settings-General-it just says About and nothing about an update. I have no idea how to update it! Please help!

    You can only update via the ipod with ios 5 or later.
    You need to update via itunes on your computer as always.

  • I have iphone3gs current software ver. is 4.2.1 and it cannot update to software version 4.3. Please help me. I tried to restore the settings of my iphone but still no work. im using the current ituned 10.4. Second, I cannot connect to all wifi networks

    I have iphone3gs current software ver. is 4.2.1 and it cannot update to software version 4.3. Please help me. I tried to restore the settings of my iphone but still no work. im using the current ituned 10.4. Second, I cannot connect to all wifi networks

    But the model no. of my iphone i.e A1303 is of 3GS as clearly mentioned here >> http://support.apple.com/kb/HT3939.  Then how its become 3G.

  • Bluetooth shuttted down after I updated to Mavericks, please help me !  I am 70 Years old and worked very happy with my iMac (21,5" mid 2010, 3,2 GHz Intel Core 3) until I updated him from  SnowLeopard 10.6.8 to Mavericks 10.9.2. 2 Days all was OK. Next M

    Bluetooth shuttted down after I updated to Mavericks, please help me !
    I am 70 Years old and worked very happy with my iMac (21,5“ mid 2010, 3,2 GHz Intel Core 3)
    until I updated him from  SnowLeopard 10.6.8 to Mavericks 10.9.2.
    2 Days all was OK. Next Morning-Start he needs (until now) 3 minutes to show me a SCREEN only milky white. After that he starts like ever with all ICONS in about 1 minute. (together 4 min.)
    ..But I must notice, that I cannot make anything, because the „BLUETOOTH APPLE WIRELESS KEYBOARD  and the APPLE  MAGIC MOUSE“ doesn't work anything like before.
    I could nothing do, I must drop my APPLE only out.
    That I maked ever 10x and all was the same... (Maveriks also 4x new updated)
    I taked my Logitech-Bluetooth-Mouse from the WIN-Laptop, dropped it in USB from iMAC...and in one second I could work only with this MOUSE...I buyd the Logitech COMBO K520 and all was OK now with my lovely APPLE iMAC to work with him...But without APPLE KEYBOARD and MAGIC MOUSE...and with a 4 min. -START until now.
    I  asked the EXPERTS from APPLE-SUPPORT under Tel. 0800-6645451 in Germany, became a Number, maked many Things by starting new, but the mistake after all is the same like before.
    When I look into ...Apple/ Info/System/ Hardware/ Bluetooth   ..my APPLE says: NO INFOs FOUND (Es wurden keine Informationen gefunden.)
    Under Hardware/ Diagnose : Selbsttest beim Einschalten: zuletzt ausgeführt: 15.05. 14, Ergebnis: Bestanden (that means OK) !!
    I asked many Peaple, who sold APPLE-Computers in the STORS, but they all had no IDEA, how they can help.
    I think, it could be a DRIVER when Starting the BIOS, JAVA RUNTIME a.s.o...
    Is an Expert under YOU to help me by my Problem with this iMAC ?

    dietmarfromdeu,
    if you start up your iMac in Safe mode, do you still have Bluetooth problems with your Apple wireless keyboard and Magic Mouse?

  • I'm in trouble, my iPod Touch is giving 4th shock when recharge and the battery does not last any more. who knows or has a similar problem, please help me. Note: all this after I downloaded the new version OS5.

    I'm in trouble, my iPod Touch is giving 4th shock when recharge and the battery does not last any more. who knows or has a similar problem, please help me. Note: all this after I downloaded the new version OS5.

    I would make an appointment at the Genius Bar of an Apple store because of the shock issue. I doubt it was caused by the update.

  • Java version 6 update

    I love my Mac and have enjoyed nearly flawless operations for over 3 years now. Software update offered the latest Java version 6 update last week. I have downloaded other Java updates over the years and have never had any problems, so I downloaded version 6. Now I can not get into an important web site that I use for business. I read the discussion topics in here and someone said, "don't forget to repair permissions". What does that mean and exactly how do you "repair permissions"...??? Any information or help would be appreciated.

    Hi
    In your regular user account, there are several areas possibly creating a block to the site. As the site is password protected, it's quite possible it is a secured site, beginning with https in the address.
    Try these suggestions in the order listed:
    1. Go to your Keychains Access.app in the Applications>Utilities folder. Open it, then go to Keychain Access Menu>Keychain First Aid. Select it. If errors appear, rerun until you get a clean pass. Quit the application when finished.
    2. Open Safari>Safari Menu>Preferences>Auto-fill>User Names and Passwords>Edit. There, scroll until you find the entry for that particular site. Highlight it, then select "remove". Close the panel.
    3. Safari Preferences>Security>Cookies. Remove any cookies from the site in question. Close the panel.
    4. Try the site.
    Post back

  • My iphoto wont open since i updated my mac, please help? it says i need to install an iphoto library upgrader which I have installed but still cant see my photos.

    my iphoto wont open since i updated my mac, please help? it says i need to install an iphoto library upgrader which I have installed but still cant see my photos.

    What version of iPhoto are you using? 9.6 is the current version.
    Do a backup.
    Quit the application.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library. Then go to Preferences/com.apple.iPhoto.plist. Move the .plist to your desktop.
    Restart, open the application and test. If it works okay, delete the plist from the desktop.
    If the application is the same, return the .plist to where you got it from, overwriting the newer one.
    Thanks to leonie for some information contained in this.

  • JAVA VERSION 6 UPDATE 13 REQUIRED

    Hi.
    A user of mine has an applciation which requires Java Version 6 Update 13. Can anyone tell me where I can download this from, please?
    Thanks.

    StanSparks wrote:
    The software publisher insists update 13 is required.Do they really? Have you actually asked them? Why? What's the bugId? Or are you just being anal?
    Sun is very very good at not introducing regression bugs in patch releases.

  • My ipod touch is stuck on the 4.2.1 software, its a 3rd gen as well i was just wondering why i can not get the lastest update can you please help me with this issue

    i have been having an issue with updating my ipod touch for some time now and i can not seem to get it to update to the lastest update. it is stuck on 4.2.1 software and i can not update it to 4.3 or any other ios software update. can you please help me to solve this issue.

    It sounds like you actually have a 2G iPod Touch which can only go as high as iOS 4.2.1.  If it's an 8 GB iPod Touch it's definitely a 2G iPod Touch as there was never such a thing as a 3G 8 GB iPod Touch. See this article to help verify what generation iPod Touch you have.
    Identifying iPod models
    B-rock

  • I have a brand new iMac, Yosemite 10.10.1, Java Version 8, Update 25, however, I still get a window when I open Adobe Photoshop CS5, that indicates that I need to install Java SE 6 Runtime. Any suggestions?

    I have a brand new iMac, Retina 5K, Yosemite 10.10.1, with Java Version 8, Update 25, however, I still get a window when I open Adobe Photoshop CS5, that indicates that I need to install Java SE 6 Runtime. Any suggestions?

    Java should be downloaded directly from Apple:
    Java for OS X 2014-001

Maybe you are looking for

  • How to display integer in the JtextField?

    Dear All I need your guidance and your advise on the following. I am creating an applet and I don't know how to display the integer which I have. Basically, i need to disply the following into a JtextField. int d1 = (int) (Math.random() * 6) + 1; int

  • Two Instance getting triggered on Change of PO for BUS2012

    Hello experts, I have created a single step Workflow, to be triggered on change of PO. I created a Subtype of BUS2012 and delegated it. added a new method to carry out the processing as required. However on change there are two workflow instance in t

  • Issues with loading some webpages and dropbox. OS X Yosemite Wifi

    I am experiencing issues with my imac. As I was browsing Chrome this morning I went to load a page and suddenly it would not load and gave a page cannot be displayed error. Since then I'm having issues. My wifi says it's connected and everything is w

  • Exchange 2013 enable forwarding option does not save the recipient address

    Hi, I am having issue on Exchange 2013 that unable to save forwarding recipient address in mail flow option. While browsing on Forward address and select recipient address it shows the blank and do not show the address. Can anyone suggest how to save

  • Query using MULTI_COLUMN_DATASTORE

    I was able to create an index using a MULTI_COLUMN_DATASTORE. However, there are no examples of how to query the multiple columns that are part of the MULTI_COLUMN_DATASTORE. Can you give me an example where you do a text search - not just on the ind