How many of you happy when I buy the iPhone 4 s

How many of you happy when I buy the iPhone 4 o'clock
But I am having a problem which is very annoying echo sound when the other party duringthe call
I hope that you know the solution
Thank you

The fact that you bought an iPhone has no effect on my happiness. There are a number of threads regarding echoing. Use the Search Discussions box at the upper right to look for them.

Similar Messages

  • I just want to kno how many time do I have to buy the same app?

    how many time do I have to buy the same app?

    You are going to have to articulate a little more clearly what your issue is. General statements like buying the same app every year is not helpful.
    What, exactly is your issue? What Apps are you having to buy over and over? If you cannot take the time to describe your problem fully and clearly, then we can't help you.
    GB

  • How many people you can do facetime at the same time?

    how many people you can do facetime at the same time?

    As many faces as the screen will fit. 27" iMac can fit quite a lot of faces.

  • How many of you rely only on the music from the cloud?

    I recently setup an appoinment to have my HDD replace by Apple and while cleaning out before backing up I thought about all of my music, which by the way takes most of the space in my HDD.
    How many of you just erased all of the music on their HDD's and rely solely on iTunes Match for music listening, and why?

    I think you misunderstood the question. I ust wanna know how many people basicaly erased all of their music and now listen using their copy from the cloud, sort of like using iTunes Match on the iPhone. I was just tjinking about going all digital rather than having physical copy of all of my music so to speak.
    ed2345 wrote:
    No backup method is fail-proof, but Apple specifically recommends against using Match as a backup.  (Bold added by me.)
    "iTunes Match is provided on an “AS IS” basis and may contain errors or inaccuracies that could cause failures, corruption or loss of data and/or information, including music, playlist, and play history, from your computer or device and from peripherals (including, without limitation, servers and other computers) connected thereto. You should back up all data and information on your computer or device and any peripherals prior to using iTunes Match."

  • When I close my iPhone and I want to open it to use it again, the opening process takes more than an hour, I regretted to buy the iPhone because of this problem that you do not suffer at all with Nokia,how I can solve this problem?

    When I close my iPhone and I want to open it to use it again, the opening process takes more than an hour, I regretted to buy the iPhone because of this problem that you do not suffer at all with Nokia,how I can solve this problem?

    mostafa182 wrote:
    ... how I can solve this problem?
    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • How do you count how many times a if/when/for statement runs?

    So this new program I'm trying to write is a changemaker (in euros for some reason). You enter a price of a product, amount paid, and it computes how much change you should get back in the form
    [number] x 2-euro
    [number] x euro
    [number] x 20-cent
    etc
    Where the number is the number of that kind of coin they should get back.
    Right now, I have it so that you enter price, and amount paid, and then I have a series of while statements that go like..
    while (surplus > 2.00);
    while (surplus > 1.00);
    etc. If the surplus > 2, I want to add 1 2-euro coin to the count, subtract 2, and then recheck the amount and either add another 2-euro or go onto the next coin. Only thing is, I don't know how to count how many times a while statement ran until it was false. Or I could be looking at this the wrong way entirely. What's the best way to go about a program like this?

    Well I finally figured it out with lots of help from other students in the class. It was much easier than it appeared to be. Thanks for the hints everyone (especially joker for doing the coding for it) wow :D much appreciated ^^
    Heres the code that I came up with and it works matches the assignment's example:
    import java.util.* ;
    public class ChangeMaker {
         private static int changeA [] = new int [7] ;
         private static float changeVar[] = new float [7] ;
         private static int changeVarNumb[] = new int [7] ;
         private static String changeNames[] = new String [7] ;
         // initialize Scanner
         private static Float getInput (String prompt){
              System.out.print (prompt.concat(" ")) ;
              Scanner sc1 = new Scanner (System.in) ;
              return (sc1.nextFloat ()) ;
         // put the change variables and change names into arrays
         private static void moneyArray (){
              changeVar[0] = (float) 2.0 ;
              changeVar[1] = (float) 1.00 ;
              changeVar[2] = (float) 0.20 ;
              changeVar[3] = (float) 0.10 ;
              changeVar[4] = (float) 0.05 ;
              changeVar[5] = (float) 0.02 ;
              changeVar[6] = (float) 0.01 ;
              changeVarNumb[0] = 2 ;
              changeVarNumb[1] = 1 ;
              changeVarNumb[2] = 20 ;
              changeVarNumb[3] = 10 ;
              changeVarNumb[4] = 5 ;
              changeVarNumb[5] = 2 ;
              changeVarNumb[6] = 1 ;
              changeNames[0] = (String) "Euro" ;
              changeNames[1] = (String) "Euro" ;
              changeNames[2] = (String) "Cent" ;
              changeNames[3] = (String) "Cent" ;
              changeNames[4] = (String) "Cent" ;
              changeNames[5] = (String) "Cent" ;
              changeNames[6] = (String) "Cent" ;
              return ;
         // calculate the change the user is going to receive
         private static void calcChange(float diffAmount) {
              for (int i = 0; i < changeVar.length ; i++) {
                   if (diffAmount > changeVar) {
                        changeA[i] = (int)(diffAmount / changeVar[i]);
                        diffAmount = diffAmount - (changeA[i] * changeVar[i]) ;
                        System.out.println(changeA[i] + " x " + changeVarNumb[i] + " " + changeNames[i]) ;
              return;
         // output
         public static void main(String[] args) {
              float itemPrice = getInput("Enter product price: ") ;
              float amountTendered = getInput("Enter amount paid: ") ;
              float diffAmount = amountTendered - itemPrice ;
              System.out.println() ;
              System.out.println("Your change is " + diffAmount + " euros") ;
              moneyArray() ;
              calcChange(diffAmount) ;
    And the output looks like this:
    Enter product price:  2.32
    Enter amount paid:  5.00
    Your change is 2.68 euros
    1 x 2 Euro
    3 x 20 Cent
    1 x 5 Cent
    1 x 2 Cent
    1 x 1 Cent                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How does this happen: The picture of recent apps you get when double clicking the home button showed in Settings-Wifi that I had been connected to a network I have not been near for two months. Its not a recent "image" of Settings-Wifi. Can anyone explain

    How does this happen: The picture of recent apps you get when double clicking the home button showed in Settings-Wifi that I had been connected to a network I have not been near for two months. Its not a recent "image" of Settings-Wifi. Can anyone explain?

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • How many table are affected when sales order creation(O2C)

    Hi all,
             HOw many table are affected when sales order creation, can any one please help ,and please give me a description indepth please please. I know some of the table affected
    Thanks&Regrads,
    Surya

    Hi Kantur Shekar madhuri,
    Would you confirm the whether in your schedule line category is activated for "Product Allocation" or not.
    if not please activate and re run your scenario.
    Regards
    Arun

  • Quick check: How many of you use Cloud services?

    Hi everyone
    Quick poll here...
    How many of you actually 
    1. know what  cloud services are;
    2 and use them, 
    3. for what purposes?
    Do share with us here.
    serene
    Community Advocate Program Manager
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

    Corrine,
    I think you make a great point - we often think about "cloud" as something that is still out there and "coming soon" when in truth we are, and have been using it for some time.  If we think about it, most software as a service tools that we use everyday are in fact, cloud applications.
    For example, this forum is a cloud application.  The data is stored on servers, and users can sign in and interact with it globally.  Attachments can be downloaded, and content can be shared into other eco systems.
    Gmail, Hotmail, most of our internet driven emails are probably cloud apps in that context and we've had them for many years.  
    If this qualifies, I guess I'm raising my hand...
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • How many of you would purchase the new B.T. Keyboard if was iPhone compat?

    Also, is the USB keyboard compatible? Let Apple know how many of you are interested here, someone will post the appropriate link I assume also.

    I would not buy it. I want portability and if I have to carry
    around a keyboard I might as well just bring my laptop.

  • Yosemite mail v8.0 not showing how many messages are in a mailbox. For example inbox. Before upgrading it used to show how many messages you had in your inbox. anyone know how to switch "on" the number of messages?

    Yosemite mail v8.0 not showing how many messages are in a mailbox. For example inbox. Before upgrading it used to show how many messages you had in your inbox. anyone know how to switch "on" the number of messages? Or has this feature been removed?

    Agreed! This feature was very useful. If you find out how to turn it on, please let me know.
    Apple, there is plenty of room in the window header all the way across on both sides of the word "Inbox". It's important to know many messages are in the Inbox. It provides a progress meter when you're cleaning out mail and striving for inbox zero.

  • How many bytes i get when i run some method through soap

    Hi everyone,
    I have a small problem. I have some web service. From wsdl file i create java classes (wsimport was used) and add them to my program. All works very good but i don't understand how to get information about how many bytes i get when i run some method.
    For example i have a method:
    service.getNewData(); How to check how many data i get BEFORE this method will complete.
    I know that i can check Content-Length but how i can do it?
    Thanks.

    * Download a new copy of the Firefox program: http://www.mozilla.com/firefox/all.html
    * Trash the current Firefox application to do a clean (re-)install.
    * Install the new version that you have downloaded.
    Your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks and other personal data.

  • How Many of You are Willing?

    How many of you are willing to line up at the stores like we did for the launch to demand justice?
    Frankly, I'd be encouraged to see people actually get off the 'net and go out on the streets. Me? I'll save my shoes for things like:
    Stopping a war on Iran.
    Actually voting so that massive vote fraud does not matter.
    Changing fund policy so the dollar does not collapse, so we'll still be able to buy cool gadgets manufactued in China.
    Making sure there is no draft so my son does not go to war.
    Ensuring that executive orders don't suspend government in the event of another terrorist attack.
    Am I loosing perspective here? I consider myself lucky, if not a bit foolish, to have been able to get an iPhone on day zero.
    I still want a credit, but is this the only thing that gets us mad enough these days?
    Ok, back to your regularly scheduled support forum.

    Please tell me that there are others who touch their phone and feel somewhat dirty, but very priviledged and are willing to see things for what they are.
    Oh, and please tell me Apple has a strategy for allowing me to develop legit 3rd party apps too.
    And the credit thing too. So I can buy more Apple stuff and feel good about it.
    (wow, am I shallow or what?)

  • How many of you put your name down for priority on launch day?

    Hey, I was told the day before launch I would be able to get my Iphone with no reservation but when I got there they told me that they didn't realise their stock would be so low. Luckily I hadn't wasted my time they told me that they will place me in a priority list for the new stock of Iphone.
    How many of you did the same as me? And have you had your email telling you to go and collect the phone yet?

    I heard from my local Apple Store that they will receive the next batch of iPhone 4's in a week or two also.
    Did you get this email?
    http://img192.imageshack.us/img192/503/26002415.jpg
    Message was edited by: ckk12

  • Just installed ios 7 on my 4s, and I have two issues: 1) control centre: the music controls do not work, only the volume adjust slider works; 2) in mail, where do you find the setting to control how many messages you want your inbox to retain?

    Just installed ios 7 on my 4s, and I have two issues: 1) control centre: the music controls do not work, only the volume adjust slider works; 2) in mail, where do you find the setting to control how many messages you want your inbox to retain?

    Same problem here on my 4s: Control center music controls do not work.
    Since this thread has two issues, I'm going to start a new one with only the music control bug. Topic: iOS 7 Control Center Music Controls Not Working On iPhone 4s

Maybe you are looking for

  • Can't sync Samsung SCH-u740 with Mac

    Anyone know when/if Apple will add a plugin or provide docs on how to create a plugin for the SCH-u740? I have scoured the web to no avail. Just got this great phone, but if I can't sync to it ... loses a lot of utility. Please help ...

  • Over-saturated dvd burns

    After my DVD is burned, the colors on most TV and computer screens, not including the one its burned from, appear over-saturated. This happens for menus and videos. The reds and blues especially are really bright. Its possible that the greys are also

  • Oracle-instantclient-basic-10.1.0.2-1.i386.rpm Not Found

    I get this Sorry, this page was not found. (ErrorDocument 500 ) [Back to Previous Page] This web site is an ever-changing collection of information on Oracle products and technology, and we've either removed or relocated the document you requested. P

  • Display column titles only once per page

    Hello, I am a newbie to BIP (R12.1.3). Below is how the output data shows up in my custom template: Vendor type lookup : Expense Vendor no: A12345 Vendor Name: Test Vendor1 Vendor Category: Expense - Construction VENDOR SITE INVOICE# INVOICE DATE DUE

  • Allow user to only access guest OS

    I have a Redhat 6.2 virtual machine that I would like to be the only thing the user sees/interacts with. Is there anyway to launch this virtual machine automatically when the Host OS starts and then prevent the user from accessing the host OS?  It wo