MORE HELP PLZ!...ja, i love doing trouble, it seems

OOOOK, here's me again and, guess what....yep, i've done something stupid again (very frequently). after i had reset my ipod, it was a happy life again and all that, but again i (stupidly) wanted to know how it was to lock the screen....and....well, i think you know what happens here....ok, I FORGOT THE CODE!!!!....buaaa, i want my music again....sniff sniff....head/desk...ok, can you plz tell me what can i do now?
AND THE TRAGIC CONTINUES....DRAMA QUEEN STRIKES BACK

Try this, connect the iPod to the main computer you use it with (if you use it with more than one, this is the first one it was connected to) and open iTunes. Then disconnect iPod from the computer, it should be unlocked: iPod: How to use the Screen Lock
If you can't get it unlocked you'll need to restore it. Just be aware that restoring will erase the hard drive, reload the software and put it back to default settings, so if you have songs on your iPod that aren't on iTunes you will lose them if you have no back up. Once the restore is complete follow the on screen instructions and it should connect to iTunes and give you a prompt to automatically update your library onto the fresh installation: Restoring iPod to Factory Settings with iTunes 7

Similar Messages

  • Hello, I'm having trouble getting to the page where I can put in my activation code for my One to One. I keep getting ID or Password error. Have already reset twice- HELP Plz.

    Hello, I'm having trouble getting to the page where I can put in my activation code for my One to One. I keep getting ID or Password error. Have already reset twice… HELP Plz.

    sashaburg wrote:
    Unfortunately Netgear's support isn't very supportive.
    Without Airport set-up, and without wireless connection, I can't talk between macs either.
    Ok, this is a mac question: With the order changed so that the ethernet comes first, why is it still showing my connection to the neighbor's wireless? Am I reading that wrong? OR am I connected to both at the same time? If so, why would it connect twice to the internet?
    Probably because you neighbor has no security on his network. Does his network show a lock like
    If it does he's got security turned on, if there is no lock showing he hasn't turned it on.

  • My itunes won't reconise my ipod touch but does with my nano any help plz

    my itunes won't reconise my ipod touch but does with my nano any help plz

    - First see if resetting the iPod will make it visible in iTunes so you can restore the iPod.
    - Next see if placing the iPod in recovery mode will make it visible.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

  • Need more help with a GUI

    It's the ever popular Inventory program again! I'm creating a GUI to display the information contained within an array of objects which, in this case, represent compact discs. I've received some good help from other's posts on this project since it seems there's a few of us working on the same one but now, since each person working on this project has programmed theirs differently, I'm stuck. I'm not sure how to proceed with my ActionListeners for the buttons I've created.
    Here's my code:
    // GUICDInventory.java
    // uses CD class
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class GUICDInventory extends JFrame
         protected JPanel panel; //panel to hold buttons
         protected JPanel cdImage; // panel to hold image
         int displayElement = 0;
         public String display(int element)
                   return CD2[element].toString();
              }//end method
         public static void main( String args[] )
              new GUICDInventory();
         }// end main
         public GUICDInventory()
              CD completeCDInventory[] = new CD2[ 5 ]; // creates a new 5 element array
             // populates array with objects that implement CD
             completeCDInventory[ 0 ] = new CD2( "Sixpence None the Richer" , "D121401" , 12 , 11.99, 1990 );
             completeCDInventory[ 1 ] = new CD2( "Clear" , "D126413" , 10 , 10.99, 1998 );
             completeCDInventory[ 2 ] = new CD2( "NewsBoys: Love Liberty Disco" , "2438-51720-2" , 10 , 12.99, 1999 );
             completeCDInventory[ 3 ] = new CD2( "Skillet: Hey You, I Love Your Soul" , "D122966" , 9 , 9.99, 1998 );
             completeCDInventory[ 4 ] = new CD2( "Michael Sweet: Real" , "020831-1376-204" , 15 , 12.99, 1995 );
             //declares totalInventoryValue variable
                 double totalInventoryValue = CD.calculateTotalInventory( completeCDInventory );
              final JTextArea textArea = new JTextArea(display(displayElement));
              final JButton prevBtn = new JButton("Previous");
              final JButton nextBtn = new JButton("Next");
              final JButton lastBtn = new JButton("Last");
              final JButton firstBtn = new JButton("First");
              prevBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = (//what goe here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              nextBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                          displayElement = (//what goes here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              firstBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = 0;
                        textArea.setText(display(displayElement));// <--is this right?
              lastBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = //what goes here?;
                        textArea.setText(display(displayElement));// <--is this right?
              JPanel panel = new JPanel(new GridLayout(1,2));
              panel.add(firstBtn); panel.add(nextBtn); panel.add(prevBtn); panel.add(lastBtn);
              JPanel cdImage = new JPanel(new BorderLayout());
              cdImage.setPreferredSize(new Dimension(600,400));
              JFrame      cdFrame = new JFrame();
              cdFrame.getContentPane().add(new JScrollPane(textArea),BorderLayout.CENTER);
              cdFrame.getContentPane().add(panel,BorderLayout.SOUTH);
              cdFrame.getContentPane().add(new JLabel("",new ImageIcon("cd.gif"),JLabel.CENTER),BorderLayout.NORTH);
              cdFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              cdFrame.pack();
              cdFrame.setSize(500,200);
              cdFrame.setTitle("Compact Disc Inventory");
              cdFrame.setLocationRelativeTo(null);
              cdFrame.setVisible(true);
         }//end GUICDInventory constructor
    } // end class GUICDInventory
    // CD2.java
    // subclass of CD
    public class CD2 extends CD
         protected int copyrightDate; // CDs copyright date variable declaration
         private double price2;
         // constructor
         public CD2( String title, String prodNumber, double numStock, double price, int copyrightDate )
              // explicit call to superclass CD constructor
              super( title, prodNumber, numStock, price );
              this.copyrightDate = copyrightDate;
         }// end constructor
         public double getInventoryValue() // modified subclass method to add restocking fee
            price2 = price + price * 0.05;
            return numStock * price2;
        } //end getInventoryValue
        // Returns a formated String contains the information about any particular item of inventory
        public String displayInventory() // modified subclass display method
              return String.format("\n%-22s%s\n%-22s%d\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Copyright Date:", copyrightDate, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
         } // end method
    }//end class CD2
    // CD.java
    // Represents a compact disc object
    import java.util.Arrays;
    class CD implements Comparable
        protected String title; // CD title (name of product)
        protected String prodNumber; // CD product number
        protected double numStock; // CD stock number
        protected double price; // price of CD
        protected double inventoryValue; //number of units in stock times price of each unit
        // constructor initializes CD information
        public CD( String title, String prodNumber, double numStock, double price )
            this.title = title; // Artist: album name
            this.prodNumber = prodNumber; //product number
            this.numStock = numStock; // number of CDs in stock
            this.price = price; //price per CD
        } // end constructor
        public double getInventoryValue()
            return numStock * price;
        } //end getInventoryValue
        //Returns a formated String contains the information about any particular item of inventory
        public String displayInventory()
              //return the formated String containing the complete information about CD
            return String.format("\n%-22s%s\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
        } // end method
        //method to calculate the total inventory of the array of objects
        public static double calculateTotalInventory( CD completeCDInventory[] )
            double totalInventoryValue = 0;
            for ( int count = 0; count < completeCDInventory.length; count++ )
                 totalInventoryValue += completeCDInventory[count].getInventoryValue();
            } // end for
            return totalInventoryValue;
        } // end calculateTotalInventory
         // Method to return the String containing the Information about Inventory's Item
         //as appear in array (non-sorted)
        public static String displayTotalInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (unsorted):\n";
              //loop to go through complete array
              for ( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);          //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory();     //add the inventory detail in String
              }// end for
              return retInfo;          //return the String containing complete detail of Inventory
        }// end displayTotalInventory
         public int compareTo( Object obj ) //overlaod compareTo method
              CD tmp = ( CD )obj;
              if( this.title.compareTo( tmp.title ) < 0 )
                   return -1; //instance lt received
              else if( this.title.compareTo( tmp.title ) > 0 )
                   return 1; //instance gt received
              return 0; //instance == received
              }// end compareTo method
         //Method to return the String containing the Information about Inventory's Item
         // in sorted order (sorted by title)
         public static String sortedCDInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (sorted by title):\n";
              Arrays.sort( completeCDInventory ); // sort array
              //loop to go through complete array
              for( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);     //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory(); //add the inventory detail in String
              return retInfo;     //return the String containing complete detail of Inventory
         } // end method sortedCDInventory
    } // end class CD

    nextBtn.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
                   displayElement = (//what goes here? ) % //what goes here?
                   textArea.setText(display(displayElement));// <--is this right?
    });Above is your code for the "Next" button.
    You ask the question "What goes here"? Well what do you think goes there?
    If you are looking at item 1 and you press the "Next" button do you not want to look at item 2?
    So the obvious solution would be to add 1 to the previous item value. Does that not make sense? What problem do you have when you try that code?????
    Next you say "Is this right"? Well how are we supposed to know? You wrote the code. We don't know what the code is supposed to do. Again you try it. If it doesn't work then describe the problem you are having. I for one can't execute your code because I don't use JDK5. So looking at the code it looks reasonable, but I can't tell by looking at it what is wrong. Only you can add debug statements in the code to see whats happening.
    If you want help learn to as a proper question and doen't expect us to spoon feed the code to you. This is your assignment, not ours. We are under no obligation to debug and write the code for you. The sooner you learn that, the more help you will receive.

  • Help plz so my gf said she block me and we txt back to back but later on i sent her a messages and it said it was read so am I blocked  a

    help plz so my gf said she block me and we txt back to back but later on i sent her a messages and it said it was read so am I blocked 

    The proper way to close Firefox is through the File menu "Exit" or the equivalent with the Firefox button.
    More detail in item '''#38 Firefox already running '''
    of
    [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 look like 3.6) (#fx4interface)]
    Firefox already running, to properly shutdown Firefox when closing the last window use File → Exit/Quit (or Firefox button → Exit). Closing Firefox with the [X] in the upper right corner closes the window ("Ctrl+W") but that does not necessarily close Firefox if it has subtasks running. If you want to close and reopen Firefox use the "Restart" within Add-ons if you made a change requiring a restart, or install "[https://addons.mozilla.org/firefox/addon/restartless-restart/ Restartless Restart]" ("Ctrl+Alt+R") which will allow you to take Firefox down and restart without having to check the Windows Task Manager to see if Firefox first actually ended. [http://kb.mozillazine.org/Firefox_hangs Firefox hangs]

  • Warning I don´t understand while compiling-Prob with .jar... help plz?

    Hello, While I compile my java file I get the :
    I:\............. >javac ObjCreatorV1.java
    Note: Some input files use or override a deprecated API.
    Note: Recompile with -Xlint:deprecation for details.After that : i get the:
    I:\........................>javac -Xlint ObjCreatorV1.java
    ObjCreatorV1.java:40: warning: [serial] serializable class ObjCreatorV1 has no definition of serialVersionUID
    public class ObjCreatorV1 extends JFrame {
           ^
    1 warningWhat does it mean?? It´s ok, I can still run it, and it´s just fine, but I´m wondering if that warning is the reason why I can´t make a .jar out of it.
    Actually I create the .jar file but it doesn´t run, it just makes a ding noise, and nothing more.
    Some help plz... =)

    I just put
    public static final long serialVersionUID = 1L; in all my classes and now I get the following....:
    I:\Documents and Settings\Universidad\Mis documentos\ObjCreator v1.0>javac -Xlint ObjCreatorV1.java
    .\Point.java:58: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\Cube.java:38: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\SimpleLine.java:33: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\Line.java:35: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\Pyramid.java:35: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\Cone2.java:80: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\Cylinder1.java:88: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\Plane.java:35: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\PlaneV.java:33: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\PlaneH.java:33: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\PlaneP.java:31: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\Parallelepiped.java:32: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    .\Prisma6.java:31: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated inLine=dis.readLine();
              ^
    13 warningspfffff
    I also tried to use
    BufferedReader dis = new BufferedReader(new InputStreamReader(in));But that gives me errors that i can´t solve either...
    help...... :S
    Edited by: epp1227 on Mar 18, 2009 4:46 AM

  • LOV does not show newly added data in the same session

    Hi guys,
    I work with JDeveloper 11g Release 2. We use Oracle ADF to develop our web app.
    In a page we have a LOV (say the page name is "a"). The related data for that LOV is inserted to the db in another page ( say the page name is "b").
    When new data is added in the page "b" and goes directly to the page "a" the LOV does not show newly added data. But if the user log out and log in again
    LOV shows newly added data correctly.
    Is there a way to show the newly added data in the same session without logging out? Please help.
    Regards !
    Sameera.

    Add the following method in your ViewRowImpl base class:
    public void refreshLOVAccessorQueries() {
        List lovs = getViewDef().getListBindingDefs();
         if (lovs != null) {
             for (Object obj : lovs) {
                getListBindingRSI((ListBindingDef)obj).getRowSet().executeQuery();
                 ListBindingDef lbd = (ListBindingDef)obj;
    Export that method to the Row Client interface, add him to the pageDef, and invoke in the executables section of the pageDef:
        <executables>
    <invokeAction Binds="refreshLOVAccessorQueries" id="callRefreshLOVs"
    RefreshCondition="#{!requestContext.postback and empty bindings.exceptionList}"/>
       </executables>

  • Multi-select LOV does not work in forms

    the multi select LOV does not work in the form.
    the LOV works individually but in the form it does not work. it does not allow multiple selection from the list.
    is there a workaround for this or is this a bug ...?
    any ideas ...?
    thanx a lot.
    null

    Right, we cannot store more than one value in a single column in a table :), we were getting a lot of requests to support multiple select LOVs but requirements were contradictory if not mutually exclusive.
    The only sense it makes is when used together with user-defined object types (nested tables for example) but the current [application building]infrastructure we have does not support this. However, we are looking into this and this feature maybe implemented in a future release.

  • The verification lists my card data and address etc. correctly but I need to keep entering the card security number.  Support keep telling me to delete and re-enter my car info which does not help. Anyone else seen this issue?  Seems to be something to do

    The verification lists my card data and address etc. correctly but I need to keep entering the card security number.
    Support keep telling me to delete and re-enter my car info which does not help. Anyone else seen this issue?
    Seems to be something to do with a new security check they have put in the system that does not work correctly and support is totally incapable of helping me out.
    wth am i gonna do im feed up and on top i have no one to help me been calling itunes for days now im ****** off to the maxxx

    I've been jumping through the hoops with Apple Support on this issue....first time I called they said I should try updating from IOS 4.0 to 4.1....tried that and the issue still persisted...then I called back to update the ticket and get the next steps...they said that the Bank is rejecting the request for verification and that is why it keeps prompting (which doesn't make sense since the confirmation seems to go through successfully). The rep also contacted the iTunes dept and had them run the verify manually and said the bank rejected it. The next hoop they want me to jump through is calling the bank to verify that the account is in good standing and inquire about the rejected requests. I'm fairly certain the bank account is in good standing....will verify of course....but I find it hard to believe that all the people who have posted here, plus countless others that are experiencing the same issue but haven't, are ALL having banking issues in the last 24hrs...I'm more convinced there is a disconnect on the back end between iTunes and Financial institutions...
    I'm not sure I buy in to everything I was told...he also told me he has had several calls on this issue and they were all told to check with their banks. He could not verify that any of his past calls were resolved. Needless to say I'm not 100% believing everything he told me....weak response from Apple support on this issue so far.

  • Could someone help me with instructions for doing a clean install for iMac with mountain lion 10.8.4 ?

       Could someone help me with instructions for doing a clean install for Could someone help me with instructions for doing a clean install for an early 2009 iMac 20"  with Mountain Lion 10.8.4 ?
       Thank You,
                                leetruitt

       Barney,  William,  nbar, Galt\'s Gulch:
       A nephew stayed with us to take a course at the local community college last semester. I allowed him use of my mac for research just after I installed Mountain Lion. He decided to "help out" and ran a 3rd party clean and tune up app., Magician.  The tune up wiped over 1200 titles of my music in iTunes,  also a path of folders with names containing nothing but more empty folders with names. Almost every program I open and run for a short time crashes, also folders and programs are in wrong places, or cannot be located (the nephew, for instance). Up to this time I have always been able to track a problem far enough to resolve it by careful persistence and good luck, but I do not have the tech savvy to solve this one without getting in deeper. I have run disk utility saveral times and always get  variations of this:
    ACL found but not expected on
    "private/etc/resolve.conf"
    "private/etc/raddb/sites-enabled/inner-tunnel"
    "private/etc/rabbd/sites-enabled/control-socket"
         Also, after four years of intense daily use it is cluttered with much junk,  and every app that I was curious about, and I am a very curious guy.
       So I know my limits, (and now my nephew). I dumped my pc for a Strawberry iMac a few years ago, and so far every problem I've encountered, or brought on myself, the Mac has resolved with its own inner elegance - in spite of my novice bungels - and now I honestly feel ashamed, in addition to the need to apologize to a machine for allowing a peasant into the Royal Grounds - so I am calling the Wise Ones in for this one.
       Crazy, I know, but to me a Mac represents something far beyond the ordinary  input ➛ process  ➛ output  title/function customarily assigned to a machine - I sense an odd kind of morality involved, one that I need to respect.
        So, these are my reasons for wanting to do a clean install, correctly.
            Thank you,  Truitt

  • HELP PLZ...SCROLLING CUBES

    k i have this cube and i have it scrolling down i need it to be set up as a bunch of random cubes scrolling from the left is there someone that can help me on this...here is the coding if u r able to help me out that will be very cool im stuck and this is really challenging me and i really want this to work...thank you very much
    import java.awt.*;
    public class Cube
    private final int xLeft; // Left margin for cubes
    private final int cubeSize;
    private int cubeX, cubeY; // Cube coordinates (upper left corner)
    private int yStep; // Distance (in pixels) to move down
    // in one timer cycle
    private int xStep;
    public Cube(int size)
    cubeSize = size;
    xLeft = cubeSize / 2;
    yStep = cubeSize / 8;
    xStep = cubeSize / 8;
    cubeX = -cubeSize; // off the board --
    cubeY = -cubeSize; // not displayed
    public void start()
    //int i = (int)(Math.random() * letters.length());
    //randomLetter = letters.charAt(i);
    cubeX = 0;
    cubeY = -cubeSize; // above the board for smooth entry
    public boolean moveDown()
    if (cubeY < 9 * cubeSize) // board's height is 10 * cubesize
    cubeY += yStep;
    return true;
    else // land this cube:
    return false;
    public boolean moveRight()
    cubeX += xLeft;
    return true;
    public boolean moveLeft()
    cubeX -= xLeft;
    return true;
    public void draw(Graphics g)
    int x = xLeft + cubeX;
    int y = cubeY;
    g.setColor(Color.gray);
    g.fill3DRect(x, y, cubeSize-1, cubeSize-1, true);
    //g.setColor(Color. white);
    //g.fillRoundRect(x + 5, y + 5, cubeSize - 10, cubeSize - 10,
    // cubeSize/2 - 5, cubeSize/2 - 5);
    //g.setColor(Color.darkGray);
    }

    ok here is all of my coding i need to make some sort of blocks or cubes a platform im guessing like that helicopter game where u have to dodge the random platforms and or blocks that come from tha left of the screen i kno its a scroll...im just tryin to basically make the same game for my class and its for a grade and im stuck i have the files one is called cube.java GamePanel.java and Tetrus.java it has nothin to do with tetris tho idk y my group named it that but wut we r tryin to do is get a scrolling platform with random cubes of some sort and when the object that we r making hits this cube or platform it says game over or wutever we will make it....if u need more info plz contact me on my AIM SN or E-Mail Address thank you sooo much
    AIM SN: DialectInsn & KonphuzedArsnist
    E-Mail: [email protected] & [email protected]
    here r the files that u asked for too....
    cube.java
    import java.awt.*;
    public class Cube
      private final int xLeft;      // Left margin for cubes
      private final int cubeSize;
      private int cubeX, cubeY;     // Cube coordinates (upper left corner)
      private int yStep;            // Distance (in pixels) to move down
                                    //   in one timer cycle
      private int xStep;                             
      public Cube(int size)
        cubeSize = size;
        xLeft = cubeSize / 2;
        yStep = cubeSize / 8;
        xStep = cubeSize / 8;
        cubeX = -cubeSize;          // off the board --
        cubeY = -cubeSize;          //   not displayed
      public void start()
        //int i = (int)(Math.random() * letters.length());
        //randomLetter = letters.charAt(i);
        cubeX = 0;
        cubeY = -cubeSize;         // above the board for smooth entry
      public boolean moveDown()
        if (cubeY < 9 * cubeSize)  // board's height is 10 * cubesize
          cubeY += yStep;
          return true;
        else  // land this cube:
          return false;
      public boolean moveRight()
        cubeX += xLeft;
        return true;
      public boolean moveLeft()
        cubeX -= xLeft;
        return true;
      public void draw(Graphics g)
        int x = xLeft + cubeX;
        int y = cubeY;
        g.setColor(Color.gray);
        g.fill3DRect(x, y, cubeSize-1, cubeSize-1, true);
        //g.setColor(Color. white);
        //g.fillRoundRect(x + 5, y + 5, cubeSize - 10, cubeSize - 10,
        //                              cubeSize/2 - 5, cubeSize/2 - 5);
        //g.setColor(Color.darkGray);
    }GamePanel.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class GamePanel extends JPanel
          implements ActionListener, KeyListener
      private Cube cube;
      private final int CUBESIZE = 25;
      private final int delay = 80;
      private Timer t;
      public GamePanel()
        cube = new Cube(CUBESIZE);
        t = new Timer(delay, this);
        addKeyListener(this);
      public void dropCube()
        cube.start();
        t.start();
       *  Processes timer events
      public void actionPerformed(ActionEvent e)
        boolean moved = cube.moveDown();
        if (!moved)  // "If not moved... "
          t.stop();
        repaint();
        this.grabFocus();
       public void paintComponent(Graphics g)
          super.paintComponent(g); // call JPanel's paintComponent
          cube.draw(g);
       public void keyTyped(KeyEvent e)
         public void keyPressed(KeyEvent e)
         public void keyReleased(KeyEvent e)
            int id = e.getKeyCode();
            if( id == KeyEvent.VK_RIGHT )
              cube.moveRight();
              repaint();
              else if( id == KeyEvent.VK_LEFT )
                cube.moveLeft();
              repaint();
              else
    }Tetris.java -remember has nothing to do with the tetris game....it is just the game board....
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Tetris extends JFrame
         implements ActionListener
      private GamePanel gameboard;
      private JButton go;
      public Tetris()
        gameboard = new GamePanel();
        gameboard.setBackground(Color.black );
        go = new JButton("Go");
        go.addActionListener(this);
        Container c = getContentPane();
        c.add(gameboard, BorderLayout.CENTER);
        c.add(go, BorderLayout.SOUTH);
        super.setSize(1000,1000);
          super.setTitle("MAZE");
          super.setVisible(true);
          super.setResizable(false);
         public static void main(String args[])
              Tetris r = new Tetris();
      public void actionPerformed(ActionEvent e)
        gameboard.dropCube();
    }thanks for all your help....

  • Why I don't see Adobe After Effects in Adobe Cloud? Help, plz!

    Why I don't see Adobe After Effects in Adobe Cloud? Help, plz!

    It simply means your system does not meet the requirements. Check them on the AE product page.
    Mylenium

  • Hello,  Windows toolbar disappears, I can work the software without tools.  I tried to install again in it that did not help.  I'd love to get help.  Thanks -isarel 053-5288322  anat

    hi
    I can work the software without tools. I have pc  adobe cs4
    in illustrator I dont have the tool bar, it's Suddenly disappeared
    I tried to install again in it that did not help.
    I'd love to get help.
    Thanks

    Anat,
    It may be time to look at this list, maybe going straight to 6).
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Help plz! PSR-300

    I hope someone can help me. We bought our son the PSR-300, thought we would start him with the basics! I've spent the last day and a half trying to get this thing going for him! It keeps telling me "Unable to connect...." Obviously I have an active internet connection but it will not get let me get to the store to register his ereader....any ideas are greatly appreciated! He loves the Christmas gift, but would really like to be able to use it...this is exactly what it says at start up
    "an error occurred while downloading the software. Please check internet connection and try again

    Hello,
    If you were prompted to update your software or tried to update it from the Help menu and the installation does not complete, it may be because the eBook Store is selected in the left pane. To complete the update, do the following:
    1. Cancel the update window that is open.
    2. In the left pane of the Reader Library, click Library .
    3. Once Library is selected, from the Help menu, click Check for Updates .
    4. Click Ok to start the update process again.

  • Videos Won't Got To i-pod... help plz.

    I just downloaded i-tunes 7, and the first time I try updating my music, more than half of my tv shows will not show up on my i-pod... Anyone else having this problem? Help plz!
    PC   Windows XP  

    I am having the same problem along with a host of others. Please help if you can.

Maybe you are looking for

  • Not Saving data in some of the fields

    I am using Oracle Database 10g Express Edition Release 10.2.0.1.0 - Application Express 2.1.0.00.39. The form fields have Source Used: Always, replacing any existing value in session state. Source Type: Database Column I modified my form, I changed a

  • Dbms_lob.fileopen failed though utl_file.fgetattr works fine

    Hi , I am using Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod. I am working on loading MS .doc into Oracle. I have created dir using following code: BEGIN EXECUTE IMMEDIATE 'CREATE OR REPLACE DIRECTORY TEST_SN1 AS'|| '''\\inecg-sdc

  • Embedding XML in XML for writing to database

    I am creating a BPEL process in Oracle BPEL Manager 10.1.2.0.2 which will read an XML file using a file adapter, perform some XPath operations on the document to obtain attribute values from its content, then write those values and the document itsel

  • Seeburger BIC module

    Hi all, I am using seeburger BIC module to convert XML file to EDI. My question is, can we configure BIC module parameter "srcDelimiter" dynamically rather than supplying any value? Thanks

  • Why is mac mail and ical always asking for my login keychain?

    This problem is driving me crazy!  Every time I close my Mac and then reopen it, I get windows saying that Mail needs my login keychain, and the same for iCal and sys admin.  I've done the KeyChain first aid and nothing works.  Help!