Mega 865 don't recognize on first time a SATA HDD after shutdown from Windows

Hi,
I have problem with a SATA HDD (Maxtor 300GB Diamondmax10) in MEGA 865 Barebone:
After I shutdown the PC from Windows when I turn on again the PC the HDD don't start on first time, I need to turn off the PC and turn on again and the HDD will start and recognize.
I tried to format HDD and reinstall Windows, to test the HDD with Maxtor Powermax utility and install the hard disk in other PC but the hard disk is ok. Last I turn on the PC without connect the SATA cable, only the power cable and the hard disk start properly every time.
I tried to upgrade BIOS to last version 1.30 and I make various configuration of BIOS and also I tried to replace SATA cable.
There isn't SATA driver in CD supplied by MSI (only Intel INF driver but no solve the problem).
I think that every time that I shutdown the PC will be stored a standby command in SATA controller that no permit to start the hard disk on first time.
I hope that you help me. Thanks.

Quote
Originally posted by alexd
The another post has no reply to solve the problem.
That's right, at least for now.
I tried to imply that perhaps your particular type of HDD has some compatibility problem with the SATA ctontroller of Mega 895. Therefore my suggestion was to see if microcode/firmware updates are available for the HDD.

Similar Messages

  • How can I set the time between how long my phone plays a text msg ringtone if I don't respond the first time?

    If I don't respond the first time, how can I set how many times/seconds it plays the next time until I respond?

    Actually, there is!
    http://www.apple.com/feedback/iphone.html

  • Applications are mentioned free, but when we start downloading one dollar is charged in my credit card, but only for the first time when i switch on and use it for the first time one dollar is charged. and from next application it is free. why?

    Applications are mentioned free, but when we start downloading one dollar is charged in my credit card, but only for the first time when i switch on and use it for the first time one dollar is charged. and from next application it is free. why?

    Kindly inform any email id or toll free number to contact apple for your below answer, Mr.King_Penguin
    About receiving my credit card being debited for Free App Store Application downloads,
    It should be within a few days, but it might vary a bit by bank/provider :
    I am in India, if the bank don't refunds , what to do?
    Rajagopal.pngr :-  It is only a holding charge, it is not a permanent charge. If it isn't refunded within a few days or so (and it quite possibly won't be over a weekend) then you can query the charge with Apple.

  • Started up iMac as a first time Mac owner. Migrated itunes from my old PC.  Can not find file on iMac, any ideas?

    Started up our new iMac as a first time Mac owner. Migrated itunes from my PC, via Migration Assistant.  Can not find the files, any idea where they may be?

    Can't help with the iTunes thing, since I don't have a PC to muck with. However, once you sort this issue out, see these, and welcome to Mac land:
    Switching from Windows to Mac OS X,
    Basic Tutorials on using a Mac,
    Mac 101: Mac Essentials,
    Mac OS X keyboard shortcuts,
    Anatomy of a Mac,
    MacTips,
    Switching to Mac Superguide, and
    Switching to the Mac: The Missing Manual, Lion Edition assuming that's what you're running.
    Additionally, *Texas Mac Man* recommends:
    Quick Assist,
    Welcome to the Switch To A Mac Guides,
    Take Control E-books, and
    A guide for switching to a Mac.

  • For the first time i want to sync music from the itunes on my desktop to my iPod touch 5th gen. it kept taking forever to back up! is backing up needed? all i wanna do is sync the music

    for the first time i want to sync music from the itunes on my desktop to my iPod touch 5th gen. it kept taking forever to back up! is backing up needed? all i wanna do is sync the music and the back up is taking way too long....
    i have not yet until now tried to sync music to this ipod touch it always syncs music on to my ipod classic..please please help me! im dying to have music on this ipod touch...

    It depends how much you have to backup..
    You could also have a problem.
    Is any progress showing?
    How long as it been backing up?
    Any other text in the status bar in addition to saying backing up?

  • I am a first time Mac user. how do i get windows.

    I am a first time Mac user. how do i get windows.I am student; can I avail of a discount should I need to buy any packages

    Yes
    see
    http://store.apple.com/uk/browse/home/education_routing
    dont forget to select the correct countrywhen page opens

  • Image display (Image don't appear the first time?)

    Applet at: http://saladinsite.tripod.com/Project/MiniProject.htm
    Code at and Bottom: http://saladinsite.tripod.com/Project/MiniProject.java
    Hi,
    I just created my very first applet. It's a simple quiz. I'll agree it's very unefficient.. but heh.. good for first try.
    There is a lil problem I am having. Sometimes when I load the applet, the background image don't show up. Sometimes, the happy/cry images (corresponding to right/wrong answer) don't show up (check the applet to see what I am talkin about) It only happens once tho. It's strange. Take a look at the applet, you will see. Btw: It's not the downloadin of image that cuzes the bug. Same problem happens in appletviewer. If it doesn't appear the first time, the next time you go back to it, it will appear.
    My teacher has also struggled with this problem but failed. Hope you guys can help me out.
    Thanks,
    Gant
    LONG Code again:
    import java.awt.*;
    import java.applet.*;
    import java.net.*;
         public class MiniProject extends Applet implements Runnable {
              boolean flag=true;
              Image happy,cry,cartoon,test,buffer;
              Graphics bufferg;
              Thread main;
                   int x = 50;
                   int y = 50;
                   int a,b,c;
                   String str;
                   double score =0;
                   double correct = 0.0;
                   TextField txt, percent, invis;
                   String boxName[] = {"Addition (+)", "Substraction (-)","Multiplication (x)","Division (�)"};
                   CheckboxGroup checkGr = new CheckboxGroup();
                   AudioClip RedMove, Applause, BadMove, NewGame, sad;
              public void init() {
                   URL codeBase = getCodeBase();
                   happy = getImage(getCodeBase(),"happy.gif");
                   cry = getImage(getCodeBase(),"cry.gif");
                   cartoon = getImage(getCodeBase(),"cartoon.gif");
                   test = getImage(getCodeBase(),"test.gif");
                   RedMove = getAudioClip(codeBase, "RedMove.au");
                   Applause = getAudioClip(codeBase, "Applause.au");
                   BadMove = getAudioClip(codeBase, "BadMove.au");
                   NewGame = getAudioClip(codeBase, "NewGame.au");
                   sad = getAudioClip(codeBase, "sad.au");
                   invis = new TextField("",1) ;
                   invis.setVisible(false);
                   setBackground(Color.white);
                   setLayout(new BorderLayout() );
                   Panel p1 = new Panel();
                   add("South",p1);
                   p1.setBackground(Color.gray);
                   p1.add(new Button("Start") );
                   p1.add(new Button("Exit") );
                   p1.add(new Button("Help") );
                   p1.add(new Button("Credits") );
                             p1.add(new Label(" Score in (%):") );
                             percent = new TextField("",3);
                             percent.setEditable(false);
                             percent.setBackground(Color.gray);
                             p1.add(percent);
                   Panel p2 = new Panel();
                   p2.setBackground(Color.gray);
                   add("North",p2);
                   p2.add(new Label("Quiz with: ") );
              Panel p3 = new Panel();
              p3.setLayout(new FlowLayout(FlowLayout.CENTER, 25, 75));
                   txt = new TextField("", 3);
                   txt.setText("");
    txt.setEditable(false);
                   Font f = new Font("Helvetica", Font.BOLD, 36);
                   txt.setFont(f);
              p3.add(txt);
              add("East",p3);
              p3.setBackground(Color.white);
              for (int i=0; i<boxName.length; i++)
                   p2.add(new Checkbox(boxName, checkGr, false) );
              buffer=createImage(size().width,size().height);
              bufferg=buffer.getGraphics();
              startM();
         } //end init
              public void run(){
              while(main!=null){
                   try {
                   main.sleep(50);
                   catch(Exception e){}
         public void stop(){
              if(main!=null){main.stop();}
         public void startM() {
                        bufferg.setColor(Color.white);
                        bufferg.fillRect(0,0,400,400);
                        bufferg.setColor(Color.black);
                             Font f = new Font("Helvetica", Font.PLAIN, 14);
                             bufferg.setFont(f);
                             bufferg.drawImage(cartoon,0,50,this);
                        bufferg.drawString("^ Click on a Quiz above to begin!", 25,47);
                        txt.setEditable(false);
                        txt.setBackground(Color.white);
                        txt.setText("");
                        percent.setText("");
                             Font f4 = new Font("Helvetica", Font.BOLD, 28);
                             bufferg.setFont(f4);
                             bufferg.setColor(Color.red);
                             bufferg.drawString("WELCOME!",15,90);
                             bufferg.setColor(Color.black);
                             bufferg.drawString("to the Interactive",55, 155);
                             bufferg.drawString("Grade 9 Math Quiz",85, 200);
                             Font f5 = new Font("Helvetica", Font.PLAIN, 18);
                             bufferg.setFont(f5);
                             bufferg.drawString("Designed by: Wasay R.",175,360);
         public void clearM() {
              bufferg.fillRect(0,0,450,400);
         public boolean action(Event evt, Object obj) {
              if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Credits") ) {
                             NewGame.play();
                             URL url = getCodeBase(); // get url of the applet
                             try {
                        getAppletContext().showDocument (new URL(url+"credits.htm"));
                             } catch(MalformedURLException e) {
                             showStatus("URL not found");
              if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Help") ) {
                             NewGame.play();
                             URL url = getCodeBase(); // get url of the applet
                             try {
                        getAppletContext().showDocument (new URL(url+"help.htm"));
                             } catch(MalformedURLException e) {
                             showStatus("URL not found");
              if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Exit") ) {
                             NewGame.play();
                             URL url = getCodeBase(); // get url of the applet
                             try {
                        getAppletContext().showDocument (new URL(url+"end.htm"));
                             } catch(MalformedURLException e) {
                             showStatus("URL not found");
              if (evt.target instanceof Checkbox && flag) {
                   flag=false;
                   NewGame.play();
                   txt.setEditable(true);
                   Color c = new Color(204,204,204);
                   txt.setBackground(c);
                   bufferg.setColor(Color.white);
                   clearM();
                   handleCheckbox(evt);
                   if (evt.target instanceof Button) {
                   String butLabel = (String) obj;
                        if (obj.equals("Start") ) {
                             flag=true;
                             y=50;
                             x=50;
                             score=0;
                             correct=0;
                             startM();
              if (evt.target==txt && score<10) {
                   String find = (invis.getText() ).substring(0,1) ;
                   if (find.equals("+")) {
                             handle2();
                             paint( Create(0) );
                             txt.setText("");
                             score++;
                   else if (find.equals("-") ) {
                        handle2();
                        paint( Create(1) );
                        txt.setText("");
                        score++;
                   else if (find.equals("x") ) {
                        handle2();
                        paint( Create(2) );
                        txt.setText("");
                        score++;
                   else if (find.equals("/") ) {
                        handle2();
                        paint( Create(3) );
                        txt.setText("");
                        score++;
              if (score==10) {
                   if (correct>=5 && !(evt.target instanceof Checkbox) )
                        Applause.play();
                   else if (correct<5 && !(evt.target instanceof Checkbox) )
                        sad.play();
                   txt.setText("");
                   txt.setBackground(Color.white);
                   txt.setEditable(false);
                        bufferg.setColor(Color.white);
                        bufferg.fillRect(100,100,350,75);
                        bufferg.setColor(Color.black);
                        bufferg.drawRect(65,110,225,75);
                             Font f = new Font("Helvetica", Font.BOLD, 28);
                             bufferg.setFont(f);
                             bufferg.setColor(Color.red);
                             bufferg.drawString("Quiz Complete!", 75,143);
                             Font f2 = new Font("Helvetica", Font.PLAIN, 18);
                             bufferg.setFont(f2);
                             bufferg.setColor(Color.black);
                             bufferg.drawString( ("Your Score: " + String.valueOf( Math.round( (correct/score*100)/0.01 )*0.01 )+"%"),101,170);
                             Font f3 = new Font("Helvetica", Font.PLAIN, 14);
                             bufferg.setFont(f3);
                             bufferg.drawString("Click Start and select a Quiz at the Top to begin",19,240);
                             bufferg.drawRect(10,227,326,0);
                             bufferg.drawRect(336,38,0,189);
                             bufferg.drawRect(10,243,326,0);
                             bufferg.drawRect(10,243,0,85);
              percent.setText( String.valueOf( Math.round( (correct/score*100)/0.01 )*0.01 ) );
              repaint();
              return true;
                   private void handle2() {
                        str = invis.getText();
                             Font f = new Font("Helvetica", Font.BOLD, 14);
                             bufferg.setFont(f);
                             bufferg.drawString("Correct:",15,70);
                             bufferg.drawString("Incorrect:",4,345);
                        if ( (str.substring(0,1) ).equals("+") )
                             if (Integer.parseInt(txt.getText() )==(a+b) ) {
                                       invis.setText("+correct");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++;
                                       RedMove.play();}
                             else {
                                       invis.setText("+wrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
                        else if ( (str.substring(0,1) ).equals("-") )
                             if (Integer.parseInt(txt.getText() )==(a-b) ) {
                                       invis.setText("-correct");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++; RedMove.play();}
                             else {
                                       invis.setText("-wrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
                        else if ( (str.substring(0,1) ).equals("x") )
                             if (Integer.parseInt(txt.getText() )==(a*c) ) {
                                       invis.setText("xcorrect");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++; RedMove.play();}
                             else {
                                       invis.setText("xwrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
                        else if ( (str.substring(0,1) ).equals("/") )
                             if (Integer.parseInt(txt.getText() )==(a/c) ) {
                                       invis.setText("/correct");
                                       x+=25;
                                       bufferg.drawImage(happy,x,50,this);
                                       correct++; RedMove.play();}
                             else {
                                       invis.setText("/wrong");
                                       y+=25;
                                       bufferg.drawImage(cry,y,325,this);
                                       BadMove.play();
              public String Multi() {
                        a = ( (int) (Math.random()*100) )+10;
                        c = ( (int) (Math.random()*10) );
                   while(c==0 || c==1)
                        c = ( (int) (Math.random()*10) );
                   String a1 = String.valueOf(a);
                   String a2 = String.valueOf(c);     
                   return (a1+" x "+a2+" = ");
                   public String Divi() {
                        a = 2*( (int) (100*Math.random() ) )+2;
                        c = 2*( (int) (10*Math.random() ) )+2;
                        while (a%c!=0)
                             c = 2*( (int) (10*Math.random() ) )+2;
                   String a1 = String.valueOf(a);
                   String a2 = String.valueOf(c);     
                   return (a1+" � "+a2+" = ");
              public Graphics Create(int i) {
              repaint();
              Dimension d=size();
              bufferg.setColor(getBackground());
              bufferg.fillRect(100,100,350,75);
              bufferg.setColor(Color.yellow);
                   a = ( (int) (Math.random()*100) );
                   b = ( (int) (Math.random()*100) );
                   String a1 = String.valueOf(a);
                   String a2 = String.valueOf(b);
                   Font f = new Font("Helvetica", Font.BOLD, 36);
                   bufferg.setFont(f);
                   bufferg.setColor(Color.black);
                   if (i==0)
                        bufferg.drawString(a1+" + "+a2+" = ", 145,150);
                   else if (i==1)
                        bufferg.drawString(a1+" - "+a2+" = ", 145,150);
                   else if (i==2)
                        bufferg.drawString( Multi() , 145,150);                    
                   else if (i==3)
                        bufferg.drawString( Divi() , 145,150);
                        return bufferg;
         private void handleCheckbox(Event evt) {
              Checkbox cb = (Checkbox)evt.target;
                   String str = cb.getLabel();
                   bufferg.drawImage(test,0,50,this);
                   if (str==boxName[0]) {
                        paint( Create(0) );
                        invis.setText("+");
                   else if (str==boxName[1]) {
                        paint( Create(1) );
                        invis.setText("-");
                   else if (str==boxName[2]) {
                        paint( Create(2) );
                        invis.setText("x");
                   else if (str==boxName[3]) {
                        paint( Create(3) );     
                        invis.setText("/");
         } //end handleCheckBox
         public void update(Graphics g){
              paint(g);
         public void paint(Graphics g) {
              g.drawImage(buffer,0,0,this);
    }//end class

    Its not easy to follow your code without the [ code] +[ /code] tags and your link may as well not be there, the code one. I would resolve this by reducing the overhead ie: stripping down the code as much as I could and then adding them back one by one. DIVIDE and CONQUER!!!
    1. Take out the audio data (I suspect this may be the key problem)
    2. Take out the Thread 'main' and have an actionListener attached to your answer field to handle the changes
    3. Take out java.net and your URLs
    4. use a MediaTracker and WaitForAll()
    5. Strip it down further - AS MUCH AS YOU CAN (you can easily reassemble it quickly again) and then look at the program flow
    6. Add more boolean logic to give you control over all your elements ie
    if(myAnswer==answer) smiley=true;
    else smiley = false;
    // or whatever, as I said I could only scan through your code as it is difficult to read in its present format.
    Finally: this is good work I like the smileys and the instant %'s, the general layout, good /intelligent use of random() to generate different Q's each time. It's a good application, just remember that applets can be unreliable and I think your basic problem is that you have too much data here.
    Strip it right down, focus on your logical flow and then put back the elements one-by-one

  • IPhoto nightmare. Tried to import photos using Nikon software for the first time and all my photos disappeared from iPhoto 8.1.2 (and everything from itunes too). Newly reinstalled iPhoto crashes as soon as I import anything now.

    Macbook OSX 10.5.8, iPhoto 8.1.2. I just tried to import some photos using Nikon software (View NX2) for the first time. When I next looked into iPhoto it was empty (so was iTunes but that's another story). I had backed up photos fairly recently but don't use time machine. Searched in vain everywhere and must have done something wrong because iPhoto wouldn't then open at all, saying it was unreadable. After a lot more attempts to recover I uninstalled iPhoto and the receipts and reinstalled from my original disc. It seemed to be ok and imported some photos from my iphone but as soon as the import is complete iPhoto crashes and when opened again it is empty. Have tried this several times and have shut down and have tried rebuilding with the alt and cmd buttons but nothing seems to help. Any ideas?

    not a reply but not sure how to add something to my own thread! It seems that Desktop was damaged too as when I try to open it a screen says there is no application selected to open Desktop with. No idea what I should choose! Any help appreciated, have really made a mess of my MacBook this time.

  • First Time Capsule HD fail, after exchange, 2nd TC Wifi Failed.

    I'm very upset with Apple that such a product with obvious defects would be released to the market. I purchased a TC 500GB last Thursday, setup it up on Friday morning, after 1 hour of use, I plugged in a NTFS HD drive. Obvious, the TC was not compatible with this, so I unplugged it and rebooted the TC. After that, the internal 500 GB drive was no recognized and nothing I did could restore it. I tried restoring factory settings, and power cycling it. Nothing worked. So I returned the unit and exchanged for another one.
    The second time around, I was able to get everything set up that way I wanted. All ethernet ports were connected, a USB hub was use to connect to a canon printer and external HD drive. I transferred about 250 GB of windows data to my external HD overnight and use Time machine to back up my mac book pro. The next day, I ran a virus scanner on my external HD from windows vista. After a few minutes, my network went down completely and I had to reboot TC, but this time, I can't get any wireless device to connect to TC. Wired connection worked, but Wireless became useless. I tried everything I could think of to get it to work. I rebooted, check for updated software and firmware from a wire connection, restore factory settings, enable/disable wireless security and I still couldn't get my Macbook Pro to connect.
    After much frustration, it became obvious that Wifi is broken. So within 4 days after purchase, I had 2 Time Capsule 500GB fail on me. The first one had a Hard drive failure and the second one had a Wifi failure. I'm an IT admin guy so I have a good idea if the problem is software or hardware, and it is very clear to me the TC has hardware issues.
    In the end I returned my TC today to the apple store for a refund. I'm going to wait another month to buy the TC again. It is really a great product with great features for the price, but the initial production of TC is flawed. Please correct this Apple ASAP.

    There is a bug in Lion and made worse rather than fixed in Mountain Lion that causes the disk in the TC to disappear.. exactly what you found.. worse by wireless than ethernet.
    Apple have not yet acknowledged there even is an issue.
    I don't even have a work around.. it simply doesn't happen on Snow Leopard.. which is rock solid network wise.
    A few things I can suggest.. clean install much better than upgrade install of the OS.. certainly problems on laptop wireless can be partly attributed to upgrade install.. if that is what you did.
    I would reset the TC full factory settings.
    Use all SMB compatible names.. short, no spaces, pure alphanumeric.
    That is for TC name.. wireless names.. put a different name for 5ghz.. and hard disk name.. which should be data but has sometimes default to Time Capsule.
    Lock the radio channels. So use manual settings and try 1, 6 or 11. And using different name for 5ghz you can set the laptop to prefer 5ghz if it is in range.
    Use WPA2 personal security only.
    Use very short lease time for DHCP.. 20min is good value and will cause almost no extra network traffic but should keep things updated. You can also use dhcp reservation to keep everyything using the same IP.

  • FTP Adapter fails first time when bpel process is invoked from concurrent

    Hi,
    We noticed that the invoke of the FTP adapter fails the first time when the bpel process is invoked from a concurrent program. The second time the concurrent is ran, it completes fine. However, when invoked from the console, it compeltes fine the first time itlsef.
    Any idea what could be worng. We are on SOA Suite 10.1.3.4
    Thanks
    -Prapoorna

    What you are doing with FTP adapter? Are you writing a file ? Any error details in logs when it is failing on first invocation ?

  • No sound first time I tried in itunes on my windows 7 pc

    Help the first time I went to listen to itunes on my windows pc, no sound.  Audio from internet, eg utube, web pages, and Windows Media Player are all fine...what gives?

    Hello LainyM,
    Thanks for using Apple Support Communities.
    Please follow the directions in the article below to download iTunes on your PC.
    iTunes: Downloading iTunes for Windows using Internet Explorer
    http://support.apple.com/kb/TS3212
    Take care,
    Alex H.

  • Burning a new CD-RW works first time, doesn't work after erase

    Hello all,
    My problem has a little twist that I couldn't find a solution to after spending a
    few hours digging in all the forums.
    I have never been able to re-use a stack of Sony CD-RW disks (p/n CDRW650L
    rated for 1X, 2X, and 4X drives).
    I can burn them fine the first time but doing an erase renders them unuseable.
    I've been using a utility called CD-Erase that came bundled on this iMac G4.
    I recently learned that I can (should?) erase from the Disk Utility app -
    however, this didn't work either.
    Is there a known list of incompatible CD-RW 's ?
    I have yet to try another mfgr since I ASSUME I can trust name brands,
    especially if the CD-RW and the drive are both made by Sony.
    Details of my internal drive:
    Manufacturer: SONY
    Model: SONY DVD RW DW-U10A
    Revision: A43h
    Serial Number: EA59142B
    Drive Type: CD-RW/DVD-RW
    Disc Burning: Apple Supported/Shipped
    Removable Media: Yes
    Detachable Drive: No
    Protocol: ATAPI
    Unit Number: 0
    Socket Type: Internal
    Thanks in advance,
    Craig
    iMac G4 17-inch flat panel   Mac OS X (10.3.9)   DSL
    iMac G4   Mac OS X (10.3.9)   DSL

    I'm unfamiliar with the disc erase utility you mention; and it may be
    partially responsible for the results you are getting. Have you tried
    other disc recording utilities to see if you can get better results?
    The only one I've tried, and it worked successfully to erase and record
    on a previously used CD-RW (the first disc I've burned) was an easily
    used disc recording utility called "Burn 1.6u" and there may be a newer
    version of this out, now. Seems to me I checked and found a link online
    again to get a newer version from the source: http://burn-osx.sourceforge.net/
    Hope this helps; and if it does, please post back. Could be the issue is
    only in the erase cd utility you have. It may be making mistakes.

  • N95 time and data loss after shutdown

    Hi! I own an unlocked N95 mobile phone with firmware version 12.0.013. The problem is that after shutdown and restarts the time and date is lost. I have disabled the option to get the time from the network operator. I have read on other forums that many other users have this problem too. Is this hardware or a firmware problem? If it's a firmware problem, when can I expect a firmware update that will fix it? My second question: are there different firmware versions for each language, because the T9 dictionary is very unusefull in the Romanian language. Many frequent words are not recognized, other are misspell. Does a firmware include an updated dictionary too? In advance, thank you very match.

    Hi,
    I have the same problem. Am also on firmware V12.0.0.13 (what ever it is).
    I dont know exactly when my problem with lossing the date and time started but I dont think it was after i changed firmware.
    I think the problem started when I had to formated my phone. It was running slow and getting temprimental. In fact am sure the date and time loss thing all started after I formated the phone.
    The date and time is the only info I loss when I remove the battery every thing else is ok.

  • It's the first time I've bought a movie from iTunes on my PC and it gives me glitches the enire movie aswell as the voices don't match the picture?

    I got a new PC. I have an iTunes account on my iPod as well but I set it up properly on here as well this is a Pavilion HP G6 it has windows 8. I dowloaded iTunes onit, it works fine. I bought "We're the Millers" today on iTunes and it gets me upset I can't watch it. Every time I play it it glitches. After the first sevral glitches the voice loses the picture; the character on the screen isn't saying the right words at the right time. I waited till it was fully down loaded and I restarted my labtop twice to see if the was the cause. It was not and and I getting up set I paid $13 for a HD movie that isn't even a movie; someone please help!

    "Bought a movie from iTunes which as gone into my videos file and I am trying to watch it on my computer. "
    But you can't? Does it show up in iTunes?
    "have iTunes on my pc but even after transferring files and syncing the video still won't show on the pc"
    Transferring from/to where?
    How are you transferring?

  • Firefox seems to hang when gmail is open. I must use task manager to exit. Frequency of hangs is increasing. Now typed characters don't always appear first time I type them. Other programs seem unaffected. Problem is getting progressively worse. Help?

    I only noticed today that Firefox works fine until I open gmail, so I'm not 100% sure of that. I usually work with gmail open, so it's hard to separate the two. Problems started before Christmas. Firefox would hang occasionally (every few days). Keyboard worked fine. Then Firefox started to hang once a day or so. Now it hangs several times a day. Every now and then, it crashes (especially if left unattended, the brat), but apparently I never sent a crash report. ( I couldn't get it to crash today -- it would rather hang. Fatal either way.) A week ago, I completely removed Firefox to the best of my ability and reloaded, hoping that would fix any hidden out-of-date or cookie issues. No joy. Keyboard issue started yesterday, so now Firefox is useless. Please save me from having to use Explorer!
    P.S. I have Vista.
    P.S.S. Oh, google calendar wouldn't load in Firefox, just now - said it's "redirected", and then Firefox crashed. Crash id is below. I did the about:crashes thing and Firefox could not find the report! (Oh Noes!)
    This sounds like malware to me, not that I know anything at all. I have current McAffee and it did not detect anything.
    Problems started around the same time that I got a new canon pixma MG8120 printer, which loaded a plugin apparently. Might be a coincidence.
    If you tell me to remove any plugins, tell me how. I think I tried that and couldn't find a way. Or maybe that was something else...

    New information and answers to the questions:
    1) I've never used dropbox on this machine, so that isn't the case
    2) I use Firefox as my browser and don't touch Safari unless it is a site that Firefox balks at. I did all the hardware scans, software scans, resetting prefs, and PRAM as well, almost every day.
    New info: I had to do a complete system format and reinstall. It actually seems to have solved the problem and corrected a few things that the recent updates hadn't resolved (the disk sound on sleep-wake didn't work until I installed the update on a new system install). I think the issue had to do with either the recent Java or Airport updates and I haven't installed them this time due to that fear. What forced me to do a complete install was the computer wouldn't hold an internet connection *at all*, even when directly plugged into the router via ethernet. System time got messed up and keychain passwords got hosed too if they related to recent internet/network connections. I wish I had more info to share but that's it. Thanks for the suggestions. I am going to keep this open for now as I am interested in seeing if anything else could explain this issue.
    I opened a bug report at the Apple Dev. site (https://bugreport.apple.com/cgi-bin/WebObjects/RadarWeb.woa/110/wo/klAiofleLooe0 XCbERCOUM/5.79.28.0.9) as well.

Maybe you are looking for

  • Macbook won't print to lexmark z600 anymore

    i cancelled a job the other day as a noticed a mistake. ever since then, my MB won't print. in the printer display it says job stopped. i clicked start, but nothing happens. when i connect to my printer at home i have no problem. whats going on?

  • Oracle Service does not start after installation of Domain role

    Hi all, here is my setting: Windows Server 2008 R2 64bit ORACLE ONE 11g I installed the database and it was working fine until I installed the domain controller role on this server. Finally I needed to uninstall this role again and restarted the serv

  • Local repository on Oracle VM Manager, then yum check-update itself

    Hi. I have one Oracle VM Manager server as Oracle Linux 6.2 x86_64 that ULN registerd. To update my Oracle VM Servers I set up local yum repository on my Oracle VM Manager, and it works OK with my Oracle VM Server Upgrade. (Here is nice documents: ht

  • Searching for clean code

    Please help the ignorant... I know there has to be a cleaner way to do this. First of all, if you have a date field that is empty, the database records 1900-01-01 00:00:00.0. So...i certainly dont need to show this in my form. Secondly, i know there

  • Itunes quitting seconds after startup, huge error message

    My audio had been crackling in and out with Itunes for a few weeks, even default noises didn't work for a time. In the last 3 days, Itunes has been quitting seconds after I start it. I think it's when it tries to access the music store. I can post an