Border / paint and update problem

Hi,
I have written a simple GUI and have two problems:
first, a white border is being displayed a the right, left and bottom side.
Second: for testing purposes I am drawing a simple rectangle; I am starting at (1, 1) but it's actually being drawn maybe at (-5, -5). Sometimes it's not being drawn at all.
Here is my code:
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.geom.Rectangle2D;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.WindowConstants;
public class MainWindow extends JFrame {
     private static final long serialVersionUID = 1L;
     private JPanel jPanel1;
     final static BasicStroke stroke = new BasicStroke(2.0f);
     public MainWindow() {
          initComponents();
     private void initComponents() {
          jPanel1 = new JPanel();
          setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
          jPanel1.setBackground(new Color(153, 204, 255));
          jPanel1.setPreferredSize(new Dimension(1024, 768));
          getContentPane().add(jPanel1);
          pack();
     public void paint(Graphics g){
          update(g);
     public void update(Graphics g){
          Graphics2D g2 = (Graphics2D)g;
          g2.setStroke(stroke);
          g2.draw(new Rectangle2D.Double(1, 1, 50, 50));
    public static void main(String args[]) {
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new MainWindow().setVisible(true);
}I am not sure about the paint / update method. I read the Swing tutorial and found examples where the drawing is being done in the update method... Does this have certain advantages?
Thanks for your help!

I still don't have it... where is my mistake?
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class MainWindow extends JPanel {
     private static final long serialVersionUID = 1L;
     public MainWindow() {
          initComponents();
     private void initComponents() {
          JComponent face = new InitMainWindow();
          face.setPreferredSize( new Dimension(250, 250) );
          JFrame frame = new JFrame();
                frame.setTitle("Test");
          frame.setBackground(new Color(153, 204, 255));
          frame.addMouseListener(new MouseAdapter() {
               public void mouseClicked(MouseEvent evt) {
                    mouseClick(evt);
          frame.pack();
          frame.setVisible( true );
     private void mouseClick(MouseEvent evt) {
          System.out.println("Click!");
     protected void paintComponent(Graphics g) {
          super.paintComponent(g);
          g.setColor(Color.BLACK);
          g.drawLine(100, 100, 150, 150);
     public static void main(String args[]) {
          java.awt.EventQueue.invokeLater(new Runnable() {
               public void run() {
                    new MainWindow().setVisible(true);
}

Similar Messages

  • Installtion and Update problems

    Hello community
    I have an iMac Intel (late 2007 model I think) and an iPhone 3GS. On my iMac, I have one user, who is adminstrator. I have following very strange behaviour:
    Last time, when I was updating my iPhone through iTunes (8.2.1) from 3.0 to 3.0.1 the download finished in iTunes, but the update process went totally wrong, so I had a dead iPhone for several hours. I tried several times, deleted the package file, redownloaded it through iTunes, nothing.
    Eventually, I could fix the problem (thanks to Apple Support Website) by creating a second (administrator) user, and updating my iPhone from that user's account.
    So far this one thing.
    The second strange behaviour is, that if I buy an App from AppStore, and download ith through iTunes, I cannot sync that app onto my iPhone. If I want new apps on my iPhone, I have to go through the mobile AppStore on the iPhone itself. The error I receive, when trying to sync the new apps from iTunes is an unknown one (iTunes actually says "an unknown error occured, try later" - thanks iTunes)...
    I was not able to test if this issue is also solved by the second new and unused profile, but I have the strong feeling it would, if I tried.
    The third issue is similar to those above, but it does not involve the iPhone. I have trouble installing packages from DMG files. Sometimes the DiskImage cannot be mounted, sometimes package verification fails and installation stops. This happens randomly: I tried to install the iPhone SDK, first the install cancelled because of some package validation, then (after a restart) the DiskImage checksum failed, then after a few more restarts, the DiskImage mounter throwed some codec overflow error, then after another few restarts the package installtion cancelled because of the package validation again (the DiskImage mounted miraculously).
    Guess what the solution was: use the new and unused administrator account to download ans install the package. It worked. At the first try. As it's meant to be...
    What the heck is going on? It seems to me, that a user profile gets messed up with time, because I didn't have ANY problems when I got my iMac. And the new user (created a week ago or so) works as expected (for now).
    Anyone experienced the same? Am I supposed to reinstall my Mac like Windowze users have to every few months (guess what: reinstalling solves all 3 problems above - but they return)???
    Thanks for anything.
    Regards, matfi
    PS: I tested the iPhone SDK download with FF3.5.2, and Safari4, the download finishes but in both cases, the errors are the same. I have a direct internet connection, no proxies or whatsoever. The install error sometimes occurs with system updates, and already occured with 3rd party software installers too (like NeoOffice, Firefox, and others)

    The behaviour started before 10.5.8, I think the iMac was shipped with 10.5.6 and I had problems already with that version. I always use Software Update, so I honestly don't know if I got the Combo or Delta update.
    Any suggestions which housekeeping utilities/tastks should/could be used here? The only thing I was running every time these problems occured was "Repair Disk" and "Repair Permissions" with DiskUtility (didn't help though, but I still didn't give up hope). The Repair Permissions found tons of errors and corrected them, but as I said - no results.
    I will check the console for errors and post if there was something interesting in there.
    Thanks
    regards
    matfi

  • Oracle forms 10g,multiple insert and update problem

    Hi,
    I have tabular form(4 records displayed) with one datablock(based on a view).
    After querying the form could not update all the records but only first record value can select from LOV.
    I called a procedure in in-insert and on-update
    The query is lik this
    PACKAGE BODY MAPPING IS
         PROCEDURE INSERT_ROW(EVENT_NAME IN VARCHAR2)
         IS
         BEGIN
              IF (EVENT_NAME = 'ON-INSERT') THEN
                   INSERT INTO XX_REC_MAPPING
                   (BRANCH_CODE,COLLECTION_ID,PAY_MODE_ID,RECEIPT_METHOD,CREATED_BY,
                   CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN)
                   VALUES
                   (     :XX_REC_MAPPING.OFFICE_CODE,
                        :XX_REC_MAPPING.COLLECTION_ID,
                        :XX_REC_MAPPING.PAY_MODE_ID,
                        :XX_REC_MAPPING.RECEIPT_METHOD,
                        :XX_REC_MAPPING.CREATED_BY,
                        :XX_REC_MAPPING.CREATION_DATE,
                        :XX_REC_MAPPING.LAST_UPDATED_BY,
                        :XX_REC_MAPPING.LAST_UPDATE_DATE,
                        :XX_REC_MAPPING.LAST_UPDATE_LOGIN);     
              ELSIF (EVENT_NAME = 'ON-UPDATE') THEN          
              UPDATE     XX_REC_MAPPING
              SET BRANCH_CODE=:XX_REC_MAPPING.OFFICE_CODE,
                        COLLECTION_ID=:XX_REC_MAPPING.COLLECTION_ID,
                        PAY_MODE_ID=:XX_REC_MAPPING.PAY_MODE_ID,
                        RECEIPT_METHOD=:XX_REC_MAPPING.RECEIPT_METHOD,
                        LAST_UPDATED_BY=:XX_REC_MAPPING.LAST_UPDATED_BY,
                        LAST_UPDATE_DATE=:XX_REC_MAPPING.LAST_UPDATE_DATE,
                        LAST_UPDATE_LOGIN=:XX_REC_MAPPING.LAST_UPDATE_LOGIN
                        WHERE ROWID=:XX_REC_MAPPING.ROW_ID;
              END IF;
         END INSERT_ROW;
    END MAPPING;
    Whether the table gets looked or sholud i use some other trigger or loops ?
    someone suggest me how to edit this query for multiple update.
    Thanks
    sat33

    I called a procedure in in-insert and on-updateWhy are you writing this code in the first place? If you have a block based on an updatable view, just let Forms do the inserts and updates.
    If it's not an updatable view, use instead of triggers on the view.
    See this current thread too:
    INSTEAD of Trigger View for an Oracle EBS New form development

  • TS3694 Restore and update problem error 3194

    My Iphone 4s is stuck in recovery mode and when I try to restore and update it gives me an error 3194.What can I do to fix this! Please help!!!

    http://support.apple.com/kb/TS3694

  • Unable to log into itunes store (0x80092013) and update problems

    I am having problems logging into the itunes store using itunes 10.6.0.40 in Wndows 7 in the uk  which results in the error message shown below:
    'We could not complete your itunes store request.  An unknown error occurred (0x80092013).  There was an error in the itunes store please try again later"
    However, I am able to browse the itunes store without any problems (this does not require logging in).
    In addition selecting the menu item Help > Check for updates in itunes results in the message "The itunes server could not be contacted.  Please check your internet connection or try again later'
    I also have two ipods and an ipad and clicking on the <Check For Update> button on each of them within itunes results in the error message "The ipod update server could not be contacted.  Make sure your network settings are correct and your network connectivity is active or try again later". 
    In trying to fix the above problems I have tried the following:
    Re-installed itunes
    Ran ipconfig /flushdns
    Changed my dns entries to use dynamic dns entries and also tried googles settings (8.8.8.8 and 8.8.4.4)
    Put entries in the hosts file for gs.apple.com etc
    Reset the winsock using the command netsh winsock reset
    Turned Norton smart firewall off completely
    Ensured interent settings were set to 'Check for server certificate revocation' was unticked and "SSL 3.0" and "TLS 1.0." were both ticked
    General internet connectivity is working fine it is just itunes where the problems are.
    I can also log onto the itunes store from the ipad itself without a problem.
    I also have a Windows Vista laptop which can connect to the itunes store without a problem and can also run the menu item Help > Check for updates and results in a message saying itunes is the latest version.  This also runs Norton Smart Firewall and is having no problems.  So I am assuming from this that my setup is not at fault and it is not an isp issue.
    I have also noticed that a number of other people are reporting problems logging into the itunes store and also error 0x80092013.
    The results of an itunes diagnostic test (Help > Run Diagnostics) are shown below (this shows that the itunes store can be browsed but attempts at prurchasing etc cannot be completed)
      Microsoft Windows 7 Ultimate Edition Service Pack 1 (Build 7601)
    System manufacturer System Product Name
    iTunes 10.6.0.40
    QuickTime 7.7.1
    FairPlay 1.14.34
    Apple Application Support 2.1.7
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.1.1.4
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.5.502
    Gracenote MusicID 1.9.5.115
    Gracenote Submit 1.9.5.143
    Gracenote DSP 1.9.5.45
    iTunes Serial Number 0012AF0402B0FA18
    Current user is an administrator.
    The current local date and time is 2012-03-11 18:01:37.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Advanced Micro Devices, Inc., ATI Radeon HD 4870
    **** External Plug-ins Information ****
    No external plug-ins installed.
    iPodService 10.6.0.40 is currently running.
    iTunesHelper 10.6.0.40 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name: {46932D17-49B1-4170-9CA8-EA1A00438097}
    Description: Microsoft Loopback Adapter
    IP Address: 169.254.183.23
    Subnet Mask: 255.255.0.0
    Default Gateway: 0.0.0.0
    DHCP Enabled: Yes
    DHCP Server: 0.0.0.0
    Lease Obtained: Thu Jan 01 00:00:00 1970
    Lease Expires: Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name: {58D508FD-AACB-4B61-B19B-D91F9FD1F400}
    Description: Bluetooth Device (Personal Area Network) #2
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway: 0.0.0.0
    DHCP Enabled: Yes
    DHCP Server:
    Lease Obtained: Thu Jan 01 00:00:00 1970
    Lease Expires: Thu Jan 01 00:00:00 1970
    DNS Servers:
    Adapter Name: {4C3DB141-4DA2-4484-A598-E5B7ACD6E684}
    Description: Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller(NDIS6.20)
    IP Address: 192.168.1.2
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.1.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.1.1
    Lease Obtained: Sun Mar 11 17:05:46 2012
    Lease Expires: Sun Mar 11 17:05:45 2012
    DNS Servers: 192.168.1.1
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was unsuccessful.
    An unknown error occurred (0x80092013).
    Connection attempt to iPhone activation server was unsuccessful.
    An unknown error occurred (0x80092013).
    Connection attempt to firmware update server was unsuccessful.
    An unknown error occurred (0x80092013).
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2012-03-11 17:58:25.

    I have spoken directly with Apple over the last couple of hours.  They are aware of the problem and are going to ask their engineering department to investigate.  It is perhaps not a big priority at the moment as they say they only have 30 confirmed reports of the issue worldwide.
    Is it possible that there are other people who are having the same problem and are watching the forums waiting for answers?  If so, please report the problem.  This is the only way for Apple to understand the scale of the problem (if indeed it is a big problem) and to be able to escalate the issue and allocate suitable resources.  The issue we are seeing is:
    I mentioned what you said about downgrading - I have also contemplated this but I am expecting I will need to run 10.6 for HD media and syncing with the new iPad.  Apple agree downgrading is not an acceptable solution, and there must be a way forward, but if you dont need 10.6 then why not downgrade until the problems are resolved.
    My take on the problem is this:
    The error code is the same as a Windows error code that suggests the issue is with accessing the certificate revovation lists (CRL).  iTunes 10.6 is a signed application that needs to access a CRL to determine whether its certificate is still active.   iTunes own diagnostic tool points in the same direction too.  The network connectivity test (see image below) shows the network interface and internet connection are fine.  It is just the secure link that is failing.  It is possible to view the apple store, and download podcasts etc.. but it is not possible to sign into an account or make purchases.
    One person has replied to many of these postings suggesting the problem can be fixed by updating DNS settings, which could add weight to this theory.  The person who posted this didnt explain why this worked for them, but if DNS settings have not propogated fully for a new CRL this could be causing problems for some users.  If so this could just fix itself in the coming days, or it may work if you can connect to the internet from a different connection like a public wifi hotspot.
    I will post updates if I get anywhere or hear anything back from Apple.

  • Folder icon with exclamation point...and updater problems

    So here's what has happened to me today:
    I plugged my iPod into my computer(this is a computer WITHOUT iPod installed yet) to charge. In the meantime, I downloaded the latest iPod updater and iTunes. The first time I used the updater, it told me that there was an iPod service error. I followed some instructions on the apple support site..and The next time I tried, it told me that one or more applications were using the iPod. I knew this wasn't the case, because the only application open was the updater, and no antivirus software was currently running. So I took my iPod back to my laptop computer(DOES have iPod installed) and it also told me that one or more applications were using the iPod, even though there were no applications open.
    So now I have a little folder with an exclamation point that tells me to go to the apple support site, which I have been to numerous times...I can put my iPod into disk mode which really doesn't help anyways...

    Then
    If a sad iPod icon or an exclamation point and folder icon appears on your iPod’s screen, or with sounds of clicking or HD whirring, it is usually the sign of a hard drive problem and you have the power to do something about it now. Your silver bullet of resolving your iPod issue – is to restore your iPod to factory settings.
    http://docs.info.apple.com/article.html?artnum=60983
    If you're having trouble, try these steps at different levels one at a time until the issue is resolved. These steps will often whip your iPod back into shape.
    Make sure you do all the following “TRYs”
    A. Try to wait 30 minutes while iPod is charging.
    B. Try another FireWire or USB through Dock Connector cable.
    C. Try another FireWire or USB port on your computer .
    D. Try to disconnect all devices from your computer's FireWire and USB ports.
    E. Try to download and install the latest version of iPod software and iTunes
    http://www.apple.com/ipod/download/
    http://www.apple.com/itunes/download/
    F. Try these five steps (known as the five Rs) and it would conquer most iPod issues.
    http://www.apple.com/support/ipod/five_rs/
    G. Try to put the iPod into Disk Mode if it fails to appear on the desktop
    http://docs.info.apple.com/article.html?artnum=93651
    If none of these steps address the issue, you may need to go to Intermediate level listed below in logical order. Check from the top of the lists to see if that is what keeping iPod from appearing on your computer in order for doing the Restore.
    Intermediate Level
    A. Try to connect your iPod with another computer with the iPod updater pre-installed.
    B. Still can’t see your iPod, put it in Disk Mode and connect with a computer, instead of doing a Restore on iPod Updater. Go and format the iPod instead.
    For Mac computer
    1. Open the disk utility, hope your iPod appears there (left hand side), highlight it
    2. Go to Tab “Partition”, click either “Delete” or “Partition”, if fails, skip this step and go to 3
    3. Go to Tab “Erase” , choose Volume Format as “MAC OS Extended (Journaled), and click Erase, again if fails, skip it and go to 4
    4. Same as step 3, but open the “Security Options....” and choose “Zero Out Data” before click Erase. It will take 1 to 2 hours to complete.
    5. Eject your iPod and do a Reset
    6. Open the iPod Updater and click “Restore”
    For Window computer
    Go to folder “My Computer”
    Hope you can see your iPod there and right click on the iPod
    Choose “Format”. Ensure the settings are at “Default” and that “Quick Format” is not checked
    Now select “Format”
    Eject your iPod and do a Reset
    Open the iPod Updater and click “Restore”
    In case you do not manage to do a “Format” on a window computer, try to use some 3rd party disk utility software, e.g.“Partition Magic”.
    C. Windows users having trouble with their iPods should locate a Mac user. In many cases when an iPod won't show up on a PC that it will show up on the Mac. Then it can be restored. When the PC user returns to his computer the iPod will be recognized by the PC, reformatted for the PC, and usable again. By the way, it works in reverse too. A Mac user often can get his iPod back by connecting it to a PC and restoring it.
    Tips
    a. It does not matter whether the format is completed or not, the key is to erase (or partly) the corrupted firmware files on the Hard Drive of the iPod. After that, when the iPod re-connected with a computer, it will be recognized as an fresh external hard drive, it will show up on the iPod updater.
    b. It is not a difficult issue for a Mac user to find a window base computer, for a PC user, if they can’t find any Mac user, they can go to a nearest Apple Shop for a favor.
    c. You may need to switch around the PC and Mac, try to do several attempts between “Format” and “Restore”
    http://discussions.apple.com/thread.jspa?messageID=2364921&#2364921
    Advance Level
    A. Diagnostic mode solution
    If you have tried trouble shooting your iPod to no avail after all the steps above, chances are your iPod has a hardware problem. The iPod's built-in Diagnostic Mode is a quick and easy way to determine if you have a "bad" iPod.
    You need to restart your iPod before putting it into Diagnostic Mode. Check that your hold switch is off by sliding the switch away from the headphone jack. Toggle it on and off to be safe.
    Press and hold the following combination of buttons simultaneously for approximately 10 seconds to reset the iPod.
    iPod 1G to 3G: "Menu" and "Play/Pause"
    iPod 4G+ (includes Photo, Nano, Video, and Mini): "Menu" and "Select"
    The Apple logo will appear and you should feel the hard drive spinning up. Press and hold the following sequence of buttons:
    iPod 1G to 3G: "REW", "FFW" and "Select"
    iPod 4G+ (includes Photo, Nano, Video, and Mini): "Back" and "Select"
    You will hear an audible chirp sound (3G models and higher) and the Apple logo should appear backwards. You are now in Diagnostic Mode. Navigate the list of tests using "REW" and "FFW". The scroll wheel will not function while in diagnostic mode. For further details on Diagnostic mode can be found at http://www.methodshop.com/mp3/ipodsupport/diagnosticmode/
    Try to do the 5in1, HDD R/W and HDD scan tests. Some successful cases have been reported after the running the few tests under the Diagnostic mode. In case it does not work in your case, and the scan tests reports show some errors then it proves your iPod has a hardware problem and it needs a repairing service.
    B. Format your iPod with a start disk
    I have not tried this solution myself, I heard that there were few successful cases that the users managed to get their iPod (you must put your iPod in disk mode before connecting with a computer) mounted by the computer, which was booted by a system startup disk. For Mac, you can use the Disk Utility (on the Tiger OS system disk), for PC user, you can use the window OS system disk. Try to find a way to reformat your iPod, again it does not matter which format (FAT32, NTFS or HFS+) you choose, the key is to erase the corrupted system files on the iPod. Then eject your iPod and do a Reset to switch out from Disk Mode. Reboot your computer at the normal way, connect your iPod back with it, open the iPod updater, and hopefully your iPod will appear there for the Restore.
    If none of these steps address the issue, your iPod may need to be repaired.
    Consider setting up a mail-in repair for your iPod http://depot.info.apple.com/ipod/
    Or visit your local Apple Retail Store http://www.apple.com/retail/
    In case your iPod is no longer covered by the warranty and you want to find a second repairing company, you can try iPodResQ at your own risk
    http://www.ipodresq.com/index.php
    Just in case that you are at the following situation
    Your iPod warranty is expired
    You don’t want to pay any service charges
    You are prepared to buy a new one
    You can’t accept the re-sell value of your broken iPod
    Rather than leave your iPod as paper-weight or throw it away.
    You can try the following, but again, only do it as your last resort and at your own risk.
    Warning !!!! – It may or may not manage to solve your problem, and with a risk that you may further damage your iPod, which end up as an expensive paper weight or you need to pay more higher repairing cost. Therefore, please re-consider again whether you want to try the next level
    Last Resort Level
    1. . Disconnecting the Hard Drive and battery inside the iPod – Warning !! Your iPod warranty will be waived once you open the iPod.
    In Hong Kong there are some electronic shops offering an iPod service for Sad iPod, the first thing they do is to open up the iPod’s case and disconnecting the battery and the Hard Drive from the main board of the iPod. Wait for 5-10 minutes and reconnecting them back. The reason behind which I can think of is to do a fully reset of a processor of the iPod. In case you want do it itself and you believe that you are good on fixing the electronics devices and have experience to deal with small bits of electronic parts, then you can read the following of how to open the iPod case for battery and HDD replacement (with Quicktimes)
    http://eshop.macsales.com/tech_center/index.cfm?page=Video/directory.html
    2.Press the reset button on the Hard Drive inside the iPod – Suggestion from Kill8joy
    http://discussions.apple.com/thread.jspa?messageID=2438774#2438774
    Have I tried these myself? No, I am afraid to do it myself as I am squeamish about tinkering inside electronic devices, I have few experiences that either I broke the parts (which are normally tiny or fragile) or failed to put the parts back to the main case. Therefore, I agree with suggestion to have it fixed by a Pro.
    2. Do a search on Google and some topics on this discussion forum about “Sad iPod”
    What should I do with my iPod? Send it or keep it?
    http://discussions.apple.com/thread.jspa?threadID=469080&tstart=0
    Strange error on iPod (probably death)
    http://discussions.apple.com/thread.jspa?threadID=435160&start=0&tstart=0
    Sad Face on iPod for no apparent reason
    http://discussions.apple.com/thread.jspa?threadID=336342&start=0&tstart=0
    Meeting the Sad iPod icon
    http://askpang.typepad.com/relevanthistory/2004/11/meeting_thesad.html#comment-10519524
    Sad faced iPod, but my computer won’t recognize it?
    http://discussions.apple.com/thread.jspa?messageID=2236095#2236095
    iPod Photo: unhappy icon + warranty question
    http://discussions.apple.com/thread.jspa?messageID=2233746#2233746
    4th Gen iPod Users - are we all having the same problem?
    http://discussions.apple.com/message.jspa?messageID=2235623#2235623
    Low Battery, and clicking sounds
    http://discussions.apple.com/thread.jspa?messageID=2237714#2237714
    Sad faced iPod, but my computer won’t recognize it
    http://discussions.apple.com/thread.jspa?messageID=2242018#2242018
    Sad iPod solution
    http://discussions.apple.com/thread.jspa?threadID=412033&tstart=0
    Re: try to restore ipod and it says "can't mount ipod"
    http://discussions.apple.com/thread.jspa?threadID=443659&tstart=30
    iPod making clicking noise and is frozen
    http://discussions.apple.com/thread.jspa?messageID=2420150#2420150
    I am not suggesting that you should follow as well, but just read them as your reference. You are the person to make the call.

  • Paint() and paintComponent() problem

    i still dun understandce what the difference between them is ...
    Anyone could explain it to me ??
    i know it is about delegation...
    In which circumstance that i should use one of them ?

    My reference says:
    For Swing components, the paint() method also draws the border and the children of the component ...so overriding it directly is not recommended. Instead, override the paintComponent() method to do any custom drawing.
    (more or less from) Java Foundation Classes in a Nutshell ...O'Reilly

  • N78 Window Transition and Update Problem

    Hello!
    I finally updated the firmware of my N78. However, I noticed that not all features are functioning well. One would be the volume control. Before, I use the upper side buttons to control it when my phones either on standby, using the radio or using realplayer. And, the transition from the portrait mode (phone's normal mode) to landscape mode (mode for viewing pictures, videos, and when using the camera) is gone. Before, the screen rotates. Now, when i press my camera button, my phone goes to camera mode but the screen does not rotate.it only fades with some nasty random lines transition. actually i dont call that a transition. the same goes when i view my pictures and my videos. there is no window transition. is there a problem in my phone. what should i do?
    (^_^)
    (T_T)
    Solved!
    Go to Solution.

    Hi,
    thank you for replying mark_kehl!!! it seems that your solution worked. however, i still have other problems like the volume control button. sometimes, my phone suddenly halts when i am using music player. hmmmm... i believe that my phone is really defective. Nokia has already advised me to return this phone to the store where i bought it but... unfortunately, i dont have time. i am traveling very often and there are more important business to attend to than returning my defective phone.isnt it that nokia should really check its products before being they are put to the market. i am really bothered about this. i mean, as far as i know, nokia has the largest market share when it comes to mobile phones and related electronics... but i'm sure... because of these minor imperfections... its fellow competitors in the market will grab those unsatisfied costumers. anyway, its not my concern. i'm planning to sell my phone next year and probably, i'll buy an LG, Samsung or Sony-Ericson phone. it seems that i overestimated nokia. i committed a fallacy: argumentum ad populum... hahahahaha.
    oh... it seems it is time for me to travel again...
    thanks again for your reply... merry christmas!!! have a bountiful new year!!!
    (^_^)
    (T_T)

  • Playback and update problems with FrontRow

    I have FrontRow 1.2.2 installed on my Mac Pro (10.4.10). Everything is working except playing music videos. The error message I get is 'There are no music videos in your iTunes library.'
    But there definitely are music videos in my iTunes library. They are even purchased ones. They have the little check mark set and the genre on all of them is set to 'Music Video'. They play perfectly in iTunes (v7.4.2).
    I've erased com.apple.frontrow.plist and com.apple.iTunes.plist in ~/Library/Preferences/ but it didn't help.
    I then read something about the FrontRowUpdate1.3.1. I downloaded it from apple.com, but I can't install it because: 'This software update requires a Macintosh with a built-in infrared (IR) receiver running Mac OS X 10.4.5 or later.'
    As the Mac Pro doesn't come with a IR receiver the update won't install.
    Basically I have two questions:
    1. Does anyone know how to get music videos playing in FrontRow 1.2.2?
    2. Does anyone know hot to update FrontRow 1.2.2 to FrontRow 1.3.1 on a Mac Pro?
    Any help is very welcome!
    As a side note: I have a copy of the very same iTunes library on my MacBook Pro. FrontRow 1.3.1 plays everything including the music videos. So I guess it's a problem with the out-dated version of FrontRow.

    Front Row is not supported by Apple on the Mac Pro towers. Front Row is only supported on Macs with built-in IR receivers. It may have been included in the bundle of software installed from the factory, but it won't run without manually changing/hacking specific system files.
    Front Row for all Macs will be included with Mac OS X 10.5 (Leopard) which is scheduled for a release sometime next month. I would suggest you upgrade to Leopard so you can get support for Front Row on your system.
    -Doug

  • Software Update problems and update problems

    Hi eveyone. I recently bought a used macbook with windows installed and decided to install leopard. unfortunatly there are some problems. 1st: Software update does not work, when I run it it says that it couldnt connect to the server. I've tried multple times but always the same. So then I try going to the apple downloads section and getting the 10.5.3 and security updates there. When i start the 10.5.3 update there is a message saying that it could not be installed on the volume: this happens with all the versions from 10.5.1 to 10.5.3. Can someone please help? I never had any problems with tiger updating either way.

    What are you using to try to install Leopard? AFAIK, you need a retail Leopard install set.

  • App syncing and update problem

    Please, explain me why a single app (for instance D8 or D17, just installed from the store) can prevent to sync or update iOS 8.
    Itunes is stucked with the message "Waiting for changes to be applied".
    It's a real pain to establish which app causes this problem.

    I have exactly the same problem... Two weeks to restore my backup and to synchronize...
    I have disable D17 and all works perfectly !
    Why ?

  • [Solved] Coreutils 7.5-1 and update problem.

    Hello.
    Today I want update my system (I build packages and install it).
    But I have problem with coreutils package:
    coreutils: /usr/share/info/dir are installed on your system.
    And coreutils package didin't update.
    I was thinking about -f (force option) but someone before said that -f option is not good Idea what should I do , Mabe remove configcting dir?
    Last edited by SpeedVin (2009-08-26 10:36:53)

    Allan wrote:Mine is the default from the pacman-3.3 package (apart from PACKAGER being assign my details).
    Maybe I will rebuild Pacman and resintall it's package I will have makepkg.pacnew
    Edit
    Still no luck
    Last edited by SpeedVin (2009-08-26 08:49:06)

  • Indesign Startup and Update problem

    After I updated to the latest CC desktop today, I can't open Indesign.  The following Startup Alerts appear: EBookExport.IndesignPlugin and UI.IndesignPlugin.  I can't update Indesign: The download appears to be corrupted message appears. Please assist me.

    Thank you for pointing me in the right direction.
    I uninstalled Indesign and I am busy re-installing it again, it got stuck at 90% for 3 hours today but I will try again tonight.
    Thank you very much for helping me.

  • IPhone 5 app store and update problems! Please help!

    Okay so I have a iPhone 5 and all my software is up to date. I'm not able to download or update any of my apps. Whenever I press on update, it asks to enter my apple id password and after I do, it stalls for a few seconds and then says "update" again. It does the same thing when I try to downlaod a new app. My apple I.d and password are both correct. This has been going on for several days and I honestly have tried just about everything. I've turned off my phone, made sure my restrictions were off, ect. Pleeease help, it would be greatly appreciated

    Reset the device instead of simply restarting it.
    If that doesn't work, pick one of the apps that is least important to you.  Delete it.  Then try to redownload it.

  • Quickstarter Disapears and update problem

    I installed StarOffice 8 and then recieved notice that there was an update. I clicked on install and it would not do it so I went to the download page and manually downloaded and installed update 9. I have 3 questions. What was not allowing the update to download? I am running an hp laptop with xp pro and have full admin rights. Second, why is the update for windows so large (557MB) compaired to the original install of 337MB and you have to leave the original inplace bringing the total to almost 900+MB what did it update? and last but not least, the "quickstarter" icon is now gone. I tried to get it back by reinstalling but it is still missing. How to I get that feature back?

    The size of the update comes from it being universal--including all languages.
    The size after update is due to the retention of replaced files with a build number extension as a backup.
    Quickstarter is set on and off in the SO8 options in the Star Office Memory section.
    To reduce the size of your installation,
    [1] delete help files and languages for files you do not use.
    [2] if you are sure you will not need to back out to a previous install, delete the files with build numbers.
    Phil

Maybe you are looking for