Esata on NF750-G55--doesn't work? Ideas? Please?

I've had this board for awhile, love it, no issues, went right in booted right up..no problems at all.  I just switched to win 7 because MS$ has chosen to stop supporting my beloved XP 64 bit professional.  Believe me if I had a choice I would have stayed with it, obviously MS can't stand the concept of something so good being out here that doesn't cost your first born.  Anyway, I haven't used the Esata port before, I just bought a drive dock that can run off usb or esata, it works perfectly on usb but as soon as I plug in the esata cable nothing. 
I wish I had another esata device to test with but I don't, I'm "assuming" since the dock works with usb that it is not malfunctioning...but I know how assumptions can be.  MSI's site has been screwed up all day, I can't get the driver pack for this board for win 7 ultimate 64 bit, the us one stalls, the europe one has a bad url and the asian downloads but I'm afraid it may not be in english.  I got this long enough ago I "assume" there are no win 7 drivers on the original disk but I'm about ready to look.  I think win 7 is fast but I hate the vista look and I hate the way they hide anything a techie might use from easy view to keep the idiots from playing with it (20+ years building systems I'm no idiot, I should get a choice about that during install or a choice of interfaces in the control panel or someplace). 
So has anyone had a problem with esata port working on this board, hopefully as soon as I can get a good driver download it will work, another thing I hate 7 doesn't give you the little yellow exclamation point when a driver isn't loaded for something. 

It's Emile's fault for abandoning his original posting where he had explained everything (and received ample input from others). His time is more important than yours, so start coughing up the answers, and make it snappy.

Similar Messages

  • This is what i have but it doesn't work.Ideas please.

    Title:Emile's Project.
    public abstract class BankAccount
    //constructor
    public void BankAccount(double nInitialBalance)
    //Abstract Methods:
    getCurrentRate:
    Returns the Current Interest Rate.
    Return Data Type: double
    Arguments: None
    abstract double getCurrentRate();
    /*setRate: Sets Interest Rate
    Return Data Type: void
    Arguments: double nNewRate
    abstract void setRate(double nNewRate);
    getDeposit: Add money to the account
    Return Data Type: void
    Arguments: double nAmount
    abstract void getDeposit(double nAmount);
    applyWithdrawal: Take Money Out
    Return Data Type: void
    Arguments: double nAmount
    abstract void applyWithdrawal(double nAmount);
    getBalance: Returns the Current Balance
    Return Data Type: double
    Arguments: None
    abstract double getBalance();
    applyFee: Reduce Current Balance
    Return Data Type: void
    Arguments: Overloaded method
    applyFee(): Applies default fee
    applyFee(double nNewRate):Applies custom fee
    //apply default fee
    abstract void applyFee();
    //custom fee
    abstract void applyFee(double nNewRate);
    applyInterest: Add Interest to the Balance
    Return Data Type: void
    Arguments: None
    abstract void applyInterest();
    package banking;
    public class CheckingAccount extends BankAccount
    private double balance = 0;
    private double interestRate = 0.02;//default rate
    public CheckingAccount(double nInitialBalance)
    this.balance = nInitialBalance;
    public void applyInterest()
    //apply interest only if balance > 0
    if(balance > 0)
    // calculate interest value: interest rate * balance
    double valInterest = interestRate * balance ;
    //calcualte new balance : add interest value to balance
    balance += valInterest;
    /*applyFee: Reduce Current Balance
    Return Data Type: void
    public void applyFee(double fees)
    //apply custom fees
    this.balance -= fees;
    getDeposit: Add money to the account
    Return Data Type: void
    Arguments: double nAmount
    public void getDeposit(double nAmount)
    balance += nAmount;
    getCurrentRate:
    Returns the Current Interest Rate.
    Return Data Type: double
    Arguments: None
    public double getCurrentRate() {
    return this.interestRate;
    applyWithdrawal: Take Money Out
    Return Data Type: void
    Arguments: double nAmount
    public void applyWithdrawal(double nAmount) {
    this.balance -= nAmount;
    /*setRate: Sets Interest Rate
    Return Data Type: void
    Arguments: double nNewRate
    public void setRate(double nNewRate)
    this.interestRate = nNewRate;
    public double getBalance() {
    return this.balance;
    applyFee: Reduce Current Balance
    public void applyFee()
    // Fees for checking balance under $20 is $15.
    if(this.balance < 20)
    this.balance -= 15;
    package banking;
    import java.io.*;
    public class FinalProject {
    public FinalProject() {
    public static void main(String[] args)throws IOException
    File outputFile = new File("accountactivity.txt"); //file : account
    activity report
    FileWriter out = new FileWriter(outputFile);//file writer object
    String message = new String(); //account activity item
    // array of Months from Jan 2000, to Jan 2001
    String arrayMonths [] ={"JANUARY, 2000", "FEBRUARY, 2000","MARCH,
    2000","APRIL, 2000","MAY,2000","JUNE, 2000", "JULY,
    2000","AUGUST,2000","SEPTEMBER, 2000","OCTOBER, 2000", "NOVEMBER, 2000",
    "DECEMBER, 2000", "JANURAY, 2001"};
    //Savings account 123 : starting jan 2000
    //deposit : $50 : from January 2000 to Jan 2001 : 13 months
    //create a new instance of a SavingsAccount with a initial balance of
    $100
    SavingsAccount savingsAcct123 = new SavingsAccount(100);
    //create message : account activity item
    message = "==========START: ACTIVITY FOR SAVINGS ACCOUNT 123
    ================ \n";
    //Print the account acticvity to output file
    out.write(message);
    message = "Savings Account 123 - Initial Balance :$" +
    savingsAcct123.getBalance()+'\n';
    out.write(message);
    for(int i=0; i < arrayMonths.length; i++)
    savingsAcct123.getDeposit(50);
    //System.out.println("Savings Account 123 - Deposit "
    +arrayMonths[i] +": $"+ 50);
    message = "Savings Account 123 - Deposit " +arrayMonths[i] +": $50
    \n";
    out.write(message);
    // Apply custom fees of 55$ on february 2000
    if(i == 1)
    //Apply custom fee : call method :applyFee(double fee)
    savingsAcct123.applyFee(55);
    message = "Savings Account 123 - Apply Custom fees : $55 on
    february 2000 \n";
    out.write(message);
    // apply default fees :call method :applyFee()
    savingsAcct123.applyFee();
    //Apply default interest: call savingsAccount's method
    savingsAcct123.applyInterest();
    message = "Savings Account 123 - Balance "+arrayMonths[i] +" : $"+
    savingsAcct123.getBalance() +'\n';
    out.write(message);
    message = "========== END: ACTIVITY FOR SAVINGS ACCOUNT 123
    ================ \n";
    out.write(message);
    //Checking account 123
    message = "\n ==========START: ACTIVITY FOR CHECKING ACCOUNT 123
    ================ \n";
    out.write(message);
    CheckingAccount checkAcct123 = new CheckingAccount(200);
    message = "Checking Account 123 - Initial Balance :"+
    checkAcct123.getBalance()+'\n';
    out.write(message);
    for(int i=0; i < arrayMonths.length; i++)
    //Special processing for May : Withdrew $190
    if(i == 4)
    checkAcct123.getDeposit(100);
    message = "Checking Account 123 - Deposit " +arrayMonths[i] +":
    $100 \n";
    out.write(message);
    checkAcct123.applyWithdrawal(190);
    message = "Checking Account 123 - Withdrawal " +arrayMonths[i]
    +": $190 \n";
    out.write(message);
    //Apply custom fees
    checkAcct123.applyFee(75);
    message = "Checking Account 123 - Apply Custom fees : $75 on May
    2000 \n";
    out.write(message);
    //Apply default fees
    checkAcct123.applyFee();
    //Apply interest
    checkAcct123.applyInterest();
    message = "Checking Account 123 - Balance "+arrayMonths[i] +" :
    $"+ checkAcct123.getBalance();
    out.write(message);
    out.write('\n');
    //Special processing for June : Deposited $200
    else if(i == 5)
    checkAcct123.getDeposit(200);
    message = "Checking Account 123 - Deposit " +arrayMonths[i] +":
    $200 \n";
    out.write(message);
    checkAcct123.applyWithdrawal(70);
    message = "Checking Account 123 - Withdrawal " +arrayMonths[i]
    +": $70 \n";
    //Apply custom fees
    checkAcct123.applyFee(45);
    message = "Checking Account 123 - Apply Custom fees : $45 on June
    2000 \n";
    //Apply default fees
    checkAcct123.applyFee();
    //Apply interest
    checkAcct123.applyInterest();
    message = "Checking Account 123 - Balance "+arrayMonths[i] +" :
    $"+ checkAcct123.getBalance();
    out.write(message);
    out.write('\n');
    else
    checkAcct123.getDeposit(100);
    message = "Checking Account 123 - Deposit " +arrayMonths[i] +":
    $100 \n ";
    out.write(message);
    checkAcct123.applyWithdrawal(70);
    message = "Checking Account 123 - Withdrawal " +arrayMonths[i]
    +": $70 \n";
    out.write(message);
    //Apply default fees
    checkAcct123.applyFee();
    //Apply interest
    checkAcct123.applyInterest();
    message = "Checking Account 123 - Balance "+arrayMonths[i] +" :
    $"+ checkAcct123.getBalance();
    out.write(message);
    out.write('\n');
    }//end if
    }//end for
    message ="==========END: ACTIVITY FOR CHECKING ACCOUNT 123
    ================ \n";
    out.write(message);
    //Savings account 523 : starting jan 2000
    SavingsAccount savingsAcct523 = new SavingsAccount(200);
    //System.out.println("Balance : "+savingsAcct523.getBalance());
    //deposit : $50 : from January 2000 to Jan 2001 : 13 months
    message = " \n ==========START: ACTIVITY FOR SAVINGS ACCOUNT 523
    ================ \n";
    out.write(message);
    message = "Savings Account 523 - Initial Balance :$" +
    savingsAcct523.getBalance();
    out.write(message);
    out.write('\n');
    for(int i=0; i < arrayMonths.length; i++)
    savingsAcct523.getDeposit(30);
    message = "Savings Account 523 - Deposit " +arrayMonths[i] +": $50
    \n";
    out.write(message);
    //Apply default fees
    savingsAcct523.applyFee();
    //apply custom fees : $125 on April 2002
    if(i==3)
    savingsAcct523.applyFee(125);
    message = "Savings Account 523 - Apply Custom fees : $125 on April
    2000 \n ";
    out.write(message);
    //Apply interest
    savingsAcct523.applyInterest();
    message = "Savings Account 123 - Balance "+arrayMonths[i] +" : $"+
    savingsAcct523.getBalance();
    out.write(message);
    out.write('\n');
    message = "========== END: ACTIVITY FOR SAVINGS ACCOUNT 523
    ================ \n";
    out.write(message);
    //Checking account 523 : starting jan 2000
    CheckingAccount checkingAcct523 = new CheckingAccount(250);
    //System.out.println("Balance : "+checkingAcct523.getBalance());
    //deposit : $50 : from January 2000 to Jan 2001 : 13 months
    message =" \n ==========START: ACTIVITY FOR CHECKING ACCOUNT 523
    ================ \n";
    out.write(message);
    message = "Checking Account 523 - Initial Balance :$" +
    checkingAcct523.getBalance();
    out.write(message);
    out.write('\n');
    for(int i=0; i < arrayMonths.length; i++)
    checkingAcct523.getDeposit(400);
    message = "Checking Account 523 - Deposit " +arrayMonths[i] +": $400
    \n";
    out.write(message);
    checkingAcct523.applyWithdrawal(300);
    message = "Checking Account 523 - Withdrawal " +arrayMonths[i] +":
    $300 \n";
    out.write(message);
    //Apply fees
    checkingAcct523.applyFee();
    //Apply custom fees : $85 on July 2000
    if( i == 6)
    checkingAcct523.applyFee(85);
    message = "Checking Account 523 - Apply Custom fees : $85 on July
    2000 \n ";
    out.write(message);
    //Apply interest
    checkingAcct523.applyInterest();
    message = "Checking Account 523 - Balance "+arrayMonths[i] +" : $"+
    checkingAcct523.getBalance();
    out.write(message);
    out.write('\n');
    message = "========== END: ACTIVITY FOR CHECKING ACCOUNT 523
    ================ \n";
    out.write(message);
    //Savings account 723 : starting jan 2000
    SavingsAccount savingsAcct723 = new SavingsAccount(50);
    message = "\n ==========START: ACTIVITY FOR SAVINGS ACCOUNT 723
    ================ \n";
    out.write(message);
    message = "Savings Account 723 - Initial Balance :$" +
    savingsAcct723.getBalance();
    out.write(message);
    out.write('\n');
    //deposit from January 2000 to Jan 2001 : 13 months
    for(int i=0; i < arrayMonths.length; i++)
    //July extra deposit 225
    if(i == 6)
    savingsAcct723.getDeposit(225);
    message = "Savings Account 723 - Deposit " +arrayMonths[i] +": $225
    \n";
    out.write(message);
    //apply custom fees $95 on july 2000
    savingsAcct723.applyFee(95);
    message = "Savings Account 723 - Apply Custom fees : $95 on July
    2000 \n ";
    out.write(message);
    savingsAcct723.getDeposit(25);
    message = "Savings Account 723 - Deposit " +arrayMonths[i] +": $25
    \n";
    out.write(message);
    //Apply default fees
    savingsAcct723.applyFee();
    //Apply interest
    savingsAcct723.applyInterest();
    message = "Savings Account 723 - Balance "+arrayMonths[i] +" : $"+
    savingsAcct723.getBalance();
    out.write(message);
    out.write('\n');
    message = "========== END: ACTIVITY FOR SAVINGS ACCOUNT 723
    ================ \n";
    out.write(message);
    //Checking account 723 : starting jan 2000
    CheckingAccount checkingAcct723 = new CheckingAccount(150);
    message = "\n ==========START: ACTIVITY FOR CHECKING ACCOUNT 523
    ================ \n";
    out.write(message);
    message = "Checking Account 523 - Initial Balance :$" +
    checkingAcct723.getBalance();
    out.write(message);
    out.write('\n');
    for(int i=0; i < arrayMonths.length; i++)
    checkingAcct723.getDeposit(330);
    message = "Checking Account 723 - Deposit " +arrayMonths[i] +":
    $330 \n";
    out.write(message);
    checkingAcct723.applyWithdrawal(320);
    message = "Checking Account 723 - Withdrawal " +arrayMonths[i] +":
    $320 \n";
    out.write(message);
    //Apply default fees
    checkingAcct723.applyFee();
    //Apply custom fees $105 on December 2000
    if(i == 11)
    checkingAcct723.applyFee(105);
    message = "Checking Account 723 - Apply Custom fees : $105 on
    December 2000 \n";
    out.write(message);
    //Apply interest
    checkingAcct723.applyInterest();
    message = "Checking Account 723 - Balance "+arrayMonths[i] +" : $"+
    checkingAcct723.getBalance();
    out.write(message);
    out.write('\n');
    message ="========== END: ACTIVITY FOR CHECKING ACCOUNT 723
    ================ \n";
    out.write(message);
    //close file outputstream
    out.close();
    }//end main
    }//end class
    package banking;
    public class SavingsAccount extends BankAccount
    private double balance = 0;
    private double interestRate = 0.04; // 4% default rate
    public SavingsAccount(double nInitialBalance)
    this.balance = nInitialBalance;
    public void applyInterest()
    //apply interest only if balance is > 0
    if(balance > 0)
    // calculate interest value : balance * interest
    double valInterest = balance * interestRate;
    //add interest value to balance
    balance += valInterest;
    public void applyFee(double fees)
    //apply custom fees
    this.balance -= fees;
    public void getDeposit(double nAmount) {
    this.balance += nAmount;
    public void setDeposit(double nAmount) {
    this.balance += nAmount;
    public double getCurrentRate() {
    return this.interestRate;
    public void applyWithdrawal(double nAmount) {
    this.balance -= nAmount;
    public void setRate(double nNewRate) {
    this.interestRate = nNewRate;
    public double getBalance() {
    return this.balance;
    public void applyFee()
    // Fees for savings balance under $40 is $10.
    if(this.balance < 40)
    this.balance -= 10;

    It's Emile's fault for abandoning his original posting where he had explained everything (and received ample input from others). His time is more important than yours, so start coughing up the answers, and make it snappy.

  • HT201304 I updated my ipad mini to ios7 and after that the restrictions have been turned on automatically. It was off before the update and I din do after either. I tried 1234 but it doesn't work. Please help me.

    I updated my ipad mini to ios7 and after that the restrictions have been turned on automatically. It was off before the update and I din do after either. I tried 1234 but it doesn't work. Please help me.

    1. It is never a good idea to include personal info like your email address or Apple ID in a post on an open forum.
    2. The email you received DOES NOT say your Apple ID cannot be used to unlock this iPad. The email informs you that your Apple ID was used to unlock an iPad. Fortunately the iPad is yours. The message confirms that. If your Apple ID was used to unlock an iPad that was not yours your would then know to change your password. Since the iPad is yours you do not need to change your password.
    Is your iPad working?

  • I restored my ipod and now the Nike app is crashing on me.  I've tried turning it off and back on but it doesn't work. Please help.

    I restored my ipod and now the Nike app is crashing on me.  I've tried turning it off and on again, but it still doesn't work.  Please help.

    Hi,
    Have you tried a Reset...
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    The Apple logo will Appear and then Disappear...
    Usually takes about 15 - 20 Seconds...
    Release the Buttons...

  • [Acrobat X Standard] The tool box doesn't work. Please help!

    [Acrobat X Standard] The tool box doesn't work. Please help!
    I have a Acrobat X Standard.
    When I open the documents, I can't click the tool box. but when I don't open the documents, I can use the tool box.
    To solve the problem,
    1. reinstall the menu.
    2. reboot the computer.
    But, It still didn't work.
    Plz help!!

    Was it AA X Std that you had these options in (sorry, I only have Pro)? If it was the trial (that is Pro), it may be that Std does not have to feature. Under XI at the Adobe site, there is a comparison of features between Std and Pro that might give you a hint.
    There is also an option to turn on or hide many tools. For me there is a small icon just above the tools...comment titles. If you select that it give a list of tools you can display. Often, several are not displayed by default. How you lost them is another things, but it is getting them that is the basic question.

  • Am unable to transfer/sync my "Notes" data from iPhone 6 to my MacAir and MacMini PC. Just doesn't work. Please advise.

    Am unable to transfer/sync my "Notes" data from iPhone 6 to my MacAir and MacMini PC. Just doesn't work. Please advise.
    regards / krishnakumar
    Cochin/India

    There may be other ways, but the best way I've found is:
    Set up an iCloud email account so that you can use the Notes part of this service.  Note that I said "iCloud email" not "iCloud" ... you need to enable the email service of iCloud in order to get the iCloud Notes feature.  Otherwise, the "Notes" app on your device will only store notes on your device, or maybe sync them with some other email account (e.g. Gmail, Yahoo ... but does so poorly IMO).
    On your Macs, set up the same iCloud account as on your iPhone.  Now that you've set up the email part of iCloud, you can enable the Notes feature of iCloud on your Macs.
    Be sure to set iCloud as the default account to store your notes, in case you have other email services with a Notes feature.
    New notes that you create on any device will sync to each other.
    Notes that you created before doing all this cannot sync to your Macs, since the notes were not in iCloud.  Just turning on iCloud Notes does not cause them to enter iCloud and sync -- you'd have to copy and paste them into a new note, after ensuring that iCloud is the default account for any new notes.

  • HT1277 I cannot open the new email icon for 10.6.8 and the latest secrtoy update. My old "Stamp" icon email won't let me in either indicating that the new OS version doesn't work. Please help

    I cannot open the new email icon for 10.6.8 including the latest security update. My old "Stamp" icon email won't let me in either indicating that the new OS version doesn't work. Please help. I have spend over 4 hours installing and reinstalling updates, etc. and I don't know where to go from here.....

    Mac OS X v10.6: Mail.app won’t open, or "You can't use this version of Mail…" alert after installing Security Update 2012-004:
    http://support.apple.com/kb/TS4424?viewlocale=en_US&locale=en_US
    Fellow user Grant Bennet-Alder offers this solution:
    Some users have reported this problem if the Mail Application has been moved out of the top-level /Applications folder, or duplicated in another location.
    When the Security Update is done, the old version of Mail is disabled.
    The solution has been to:
    1) make certain Mail is in the /Applications folder
    2) There is no other copy anywhere else.
    3) Once steps 1 and 2 have been done, Manually download and re-apply the Security Update (2012-004) by hand.
    Security Update 2012-004 (Snow Leopard)
    If the Mail.app has been LOST, it can be re-installed by applying the 10.6.8 version 1.1 combo update. But this update is quite large and it is usually not necessary:
    Mac OS X 10.6.8 Update Combo v1.1

  • HT204051 I'm unable to connect my iphone 5s to the Dlink router. I tried all the apple support suggestions. But doesn't work. Please let me know.

    I'm unable to connect my iphone 5s to the Dlink router. I tried all the apple support suggestions. But doesn't work. Please let me know.

    I'm having this problem now with my 2 weeks old iPhone 6+. in the beginning everything going great and managed to connect every wifi around me. Then suddenly 1 week ago, All the wifi from my office, home, hotel and coffee house saying either incorrect password or can't join the wifi. But when i switch on my hotspot from my iPhone 5 it can be connect. i also try with my friend iPhone hotspot. So is it because of hardware problem or software problem. And i just restore my iPhone6+ and still can't connect to wifi and manage to join hotspot (also wifi right?) regret as all my downloaded stuff vanish and now can't download back using wifi.....
    Thanks for assisting

  • My ipad is on an infinite loop.  I used ios7 for a few days and then did updates on some of my apps. that's when the infinite loop started.  I have tried pressing the power and home button at the same time, but it doesn't work. Please help!

    my ipad is on an infinite loop.  I used ios7 for a few days and then did updates on some of my apps. that's when the infinite loop started.  I have tried pressing the power and home button at the same time, but it doesn't work. Please help!
    I even tried some hints posted for ios6 (turn off Ipad, holding home button and plugging in power cord at the same time and then releasing the home button)
    I did manage to get a different screen that shows the itunes icon and a power cord, but nothing happens.

    You were on the right track. You got the connect to iTunes screen and you ended to use iTujes to restore your iPad. Try recovery mode again.
    Recovery Mode Instructions
    Disconnect the USB cable from the iPad, but leave the other end of the cable connected to your computer's USB port.
    Turn off iPad: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for iPad to turn off.
    If you cannot turn off iPad using the slider, press and hold the Sleep/Wake and Home buttons at the same time. When the iPad turns off, release the Sleep/Wake and Home buttons.
    While pressing and holding the Home button, reconnect the USB cable to iPad. When you reconnect the USB cable, iPad should power on.
    Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears you can release the Home button.
    If necessary, open iTunes. You should see the recovery mode alert that iTunes has detected an iPad in recovery mode.
    Use iTunes to restore iPad.

  • My Safari shortcut Cmd+Opt+B doesn't work. Please Help.

    Hi fellow MacBook Pro Users,
    My Safari shortcut Cmd+Opt+B, to show and hide all bookmarks doesn't work.  The same shortcut is used in a third party app Scrivener and it doesn't work there too.  I had a look at all my keyboard shortcuts listed in System Preferences>Keyboard>Keyboard Shortcuts and don't see the shortcut listed there.  Also I checked my triggers in Quicksilver and didn't see the Cmd+Opt+B shortcut there too.  Any idea how I can fix this?  Had this issue for a long while now.
    Thanks!

    This issue may be resolved by installing the 10.6.8 v1.1 combo updater.
    Mac OS X 10.6.8 Update Combo v1.1

  • MY IPOD APPEARS TO BE ZOOMED INTO THE SCREEN AT ALL TIMES, MAKING IT DIFFICULT TO DO SIMPLE TASKS SUCH AS GO BACK, OR SELECT A PLAYLIST, ETC. I'VE TRIED PULLING IT OUT WITH MY FINGERS BUT THAT DOESN'T WORK. PLEASE CAN YOU HELP!!! THANKS.

    I've got a touch iPod and for about a week now it's almost been permenently zoomed into the screen? I actually cannot get it to zoom back out. I've tried pulling the screen out with my fingers but that doesn't work. It's zoomed in on my home pages, on my music, settings everything! It makes simple things like deleting a number from my password login extreamly differcult. Please can someone help?!?! Thanks.

    Double tap the screen with three fingers to un-zoom.
    Then go to Settings > General > Accessibility > Zoom and turn this OFF.

  • IPhone 4S microphone doesn's work! Please Help!

    My IPhone 4S is about a year and a half old and I got it last february. Now my microphone is not only not working in calls, but it doesn't work in apps either. It only works some of the time in my camera when i'm taking videos and in speaker phone during calls. I don't know what's wrong with it but I guess I'm not the only person with this issue. Also apparently Apple does absolutely nothing about it and just tell you to buy a new one. It seems like all IPhone 4(S) users have this problem eventually. Recently I took my phone off of insurance because of the cost before realizing that it doesn't work properly. Does anyone have suggestions or ways to fix this issue? I definitely cannot afford a new phone right now and i will definitely not be looking into another IPhone when i get an upgrade. Also, does anyone with the 5 have these problems after this long? Apple needs to fix this or they will lose me and possibly many more as a customer.

    It seems like all IPhone 4(S) users have this problem eventually.
    Nonsense. 
    Does anyone have suggestions or ways to fix this issue? I
    Do the basic troubleshooting steps.  If they don't work, there is a hardware problem.
    iPhone: Hardware troubleshooting
    definitely cannot afford a new phone right now and i will definitely not be looking into another IPhone when i get an upgrade.
    So, you think that you're entitled to an extended warranty without paying because of your financial limitations or idle threats?  Tell it to your parents.

  • A little uncanny situation since release of FIREFOX RC is that 'Reload option which used to come under view option is no longer visible,but appears as an icon in toolbar...which sometimes doesn't work'. Please try to fix it if its only my problem

    I have been using FIREFOX since a long time back and am quite happy with FIREFOX 4.
    But a little uncanny situation since release of FIREFOX RC is that 'Reload which used to come under view option is no longer visible,but appears as an icon(button) in toolbar...which sometimes doesn't work(becomes blur and sometimes firefox hangs)'.
    Please try to fix it if its only my problem or include it in next release.Thanks!

    I have been using FIREFOX since a long time back and am quite happy with FIREFOX 4.
    But a little uncanny situation since release of FIREFOX RC is that 'Reload which used to come under view option is no longer visible,but appears as an icon(button) in toolbar...which sometimes doesn't work(becomes blur and sometimes firefox hangs)'.
    Please try to fix it if its only my problem or include it in next release.Thanks!

  • Stuck on apple logo and Home button doesn't work, help please?

    Well, I dropped my iPod Touch 4g by accident and since that day, the home button hasn't really been working that well. Its very hard to use since you have to press it in really hard to get it to work and sometimes it doesn't even work at all. Anways, I was skyping with my girl and I didn't notice that I had to charge the iPod and it died on me so I was like what ever its normal and started to charge it. When it turned on, it got stuck on the Apple logo and its been there for more than a day now? What can I do? I know about the Press Home + Sleep button together but the Home button doesn't work at all anymore. I tried everything really. I tried to connect it to itunes and see if I could restore it but it won't recognize it no matter where I connect it. Tried it on 3 different computers and none worked at all.  I can't take it to an Apple store since there isn't any close to where I live and I really don't have anyone to take me there. So is there any other solution to fix my problem at home? or is it messed up completely? Someone please help me

    I have this same issue. But also, it isn't just that the lock/home button stops working, all buttons stop working. Even if you switch it to silent sounds are still played. I just got my iphone Thursday. Went to school the next day and pulled it out, it happened while it was locked I guess because my screen was black and I couldn't do anything! Thought it died already! This was around 12. Finally I pulled it out of my pocket again at around 3 and it showed the Apple logo and acted like it had just started back up. Which is what always happens after I get stuck playing a game or something. Help please, has happened two or three times just today.

  • The menu button doesn't work! Please help me!

    I own a really cute ipod mini and i love it. But I had some trouble lately...the latest problem: my menu button doesn't work. well, i did everything i could do...reset all setting etc etc. but the problem still persists. Please help me!
      Windows XP  

    I own a really cute ipod mini and i love it. But I
    had some trouble lately...the latest problem: my menu
    button doesn't work. well, i did everything i could
    do...reset all setting etc etc. but the problem still
    persists. Please help me!
      Windows XP  
    same thing is happening to mine. i own a silver mini and recently it has been acting skrewy. the backlight goes on and off (without holding MENU and when the setting is at OFF) and the menu button doesnt work too. just today i discovered that when i do the HOLD switch it replaces the MENU process or ability.
    PLEASE HELP!

Maybe you are looking for