How to stop hanging up or calling other numbers while in a call.

My wife has the Droid 2 and she has been having continuous problems with the phone hanging up on her calls or dialing her voice mail while in a call.  I have had several calls hang up on me as well.  I have checked how she holds the phone to make sure the proximity sensor is working and everything appears fine.  She has even tried pressing the power/lock button as soon as she enters a call with no improvement.  Has anyone else seen this problem and what can be done to fix it?

When speaking on the droid devices once the phone is placed to your ear the screen should go black and once you pull the phone away from your face it should light back up giving options to either make a call or hang up or other options.  If  you are still able to call while the phone is in use and the device is up to your face, try to do a battery pull by removing the battery while phone is powered on and let the battery stay out for about 10 to 15 seconds then replace the battery and see if there is still an issue with the device calling other people while the phone is in use. The next option if you are still having the issue to do a factory reset but make sure the SD card is removed before performing the factory reset here is the link for instructions on the factory reset http://search.vzw.com/?do=viewdoc&id=31308&p=null
Hope this Helps

Similar Messages

  • How to stop an ORB server in other program

    I have writen an ORB server program, just like the sample HelloServer, the main thread wait on a new object forever.
    How to stop the server in some other programs?
    Is there some common method to stop ORB server except kill the main process.
    Thank for any help!

    The question I have is how to stop an orb server programmatically without shutting down my app. My app is a server that runs continuously. I want the ability to shut down just the orb portion and restart it if desired.
    I also look for this capability. When searching for this in the forums, surprisingly, I only find one question for this, but no reply or answer. Does anyone have any idea?
    Thank you for all ideas.

  • How to stop specific query attached with other query in same process using With method

    Would it be possible to stop one query out of two queries attached to single process...because i see it is returning one IDisposable inteface...if i call dispose() method...two queries are stopped/killed...
    So how to stop specific query which is combined with other queries in a  same process at runtime i.e., attach or detach kind of thing?
    Thanks in advance
    Satish

    Yes, the overloading of the term "Process" can be confusing. In SI, depending on your edition of StreamInsight, a process can run on one or more threads from a pool of threads and are scheduled together. Don't think of a process necessarily as a single
    thread or multiple processes as a method of multi-threading.
    As for a limit on the number of queries, there isn't a hard limit that I'm aware of. However, there will be a practical limit that will vary based on the complexity of the query, the event rate and your hardware (# of cores). If you are using Standard Edition,
    this limit is much smaller as you only have a single scheduler thread. With Premium Edition, you have a scheduler thread for each core on the machine so you can get higher throughput and lower latency. But if you have, say, 4 cores on the machine (don't count
    hyperthreaded cores, just real cores), 100 queries and a target throughput of 100K events/second, you'll likely have some problems. At 1K events/sec, you'd likely be fine though. With 32 cores and Premium Edition, you'd probably be OK with 100K events/sec.
    So ... like I said, it depends.
    DevBiker (aka J Sawyer)
    Microsoft MVP - Sql Server (StreamInsight)
    If I answered your question, please mark as answer.
    If my post was helpful, please mark as helpful.

  • How to stop everything before gotoAndStop to other frames?

    Hi,
    I'm trying to make a small flash that looks like a website.
    and I'm using 4 buttons with gotoAndStop to navigate to 4 different frames/pages.
    The problem is, when I import a video or videoclip to a frame/page, it won't stop playing when I click the button to go to other frames.
    It's not visible because I'm not in that frame but I can still hear it playing in the background.
    If I go back to that frame, it starts playing video again but the old one is still playing ...
    How do I stop everything in the current frame when I click the navigation buttons?
    I'm new to flash please help

    Thank you for your reply Ned,
    I did make the video stop by this code, it works perfectly when I navigate to other frames
    VideoClip.addEventListener(Event.REMOVED_FROM_STAGE, stopPlay);
    function stopPlay(e:Event)
         VideoClip.stop();
    but this code won't work for the nested movie clips.
    In another frame/page of my flash file, I have put a mini game that I imported as a movieclip, It has background music and stuff. It won't stop if I click buttons to go to other frames. When I click back to that frame, it just loads the movieclip mini game again ....
    How do I fix this?

  • How to stop updating TRDAT ,PWDLGNDATE in USR02 table while log on through dialog user

    Hi Every One,
                         when ever user logon to sap system TRDAT,PWDLGNDATE updates the current date on which user logon but i don't want to update it for some of my dialog users how to stop this is there any parameter is there to set please help me

    Hi,
    This is SAP Business one system administration forum. Please find correct forum and repost above discussion to get quick assistance.
    Please close this thread here with helpful answer.
    Thanks & Regards,
    Nagarajan

  • How could stop this thread that calls an externall function ?

    Hi all.
    i need an help about syncronization of two thread.
    the first one is smt like that
    Thread t = new Thread(new Runnable() {
                   public void run() {
                        long startTime = System.currentTimeMillis();
                        while (System.currentTimeMillis() - startTime < lifetime) {
                             if (c.dynamic) {                    
                                  c.adjustLayout();
                             c.repaint();
                             try {
                                  Thread.sleep(delayMillis);
                             catch (InterruptedException ex) {
                                  // ignore
              t.start();where c.adjustLayout(); & c.repaint(); are syncronized over a astructure called G using syncronized(G)
    now the second thread is:
         Thread t = new Thread(new Runnable() {
                   public void run() {
                        long startTime = System.currentTimeMillis();
                        while (System.currentTimeMillis() - startTime < lifetime) {
                             if (c.updateVisible) {
                                  c.updateVisibleGraph();
                             try {
                                  Thread.sleep(delayMillis);
                                  Thread.yield();
                             catch (InterruptedException ex) {
                                  // ignore
              });where the function c.updateVisibleGraph(); is syncronized over G as well. the problem is that this function, takes seconds, and block thread A and B (both of them ar suyncronized, so if B is running A cannot run).
    how can i stop c.updateVisibleGraph(); in the middle of the exectuion or each 50ms.
    is this possible?
    thanks
    Edited by: ELStefen on 26-ago-2010 16.08
    Edited by: ELStefen on 26-ago-2010 16.11

    isocdev_mb wrote:
    Using a synchronized-block is not designed to give up the lock for little while, it holds the lock until the block ends. Your requirement needs a far more fine-grained approach, quite different from your sketched implementation.
    It would involve quite an amount of guessing of what's behind the G and c your mentioning to suggest a way out. Please elaborate on what you're trying to achieve so that we can suggest how to do that...
    P.S. this forum likes problems to come with a simple working example, which you did not provide and a description of what you'd like to achieve, some context.as i thought, damn.
    Well give a working example is quite complex for the time being. Is a big project and take out this part is quite complex. But i can explain the goal.
    Practically there's a Graph (G)
    this graph is used by 2 thread, one is the update the edges and vertices, adding and removing them. the other one thread is the painter of the graph.
    the problem is when the first thread is updating the structure of G, sometimes this operation takes time (seconds) and being synchronized on G it blocks the paint thread as well.
    the thing that i would like to have is keep the painting working each tot millisecond. the updating thread works when necessary. if the update operation takes to long, it has to be stopped in the middle (and it has to restart after the paint) in a way that the paint thread can be executed.
    as the code is, and as you said, synchronizing the entire block code cannot works as i want.
    is this more clear? any clue about how can i solve this?
    many thanks
    Edited by: ELStefen on 27-ago-2010 12.43

  • How to stop some apple id call my apple id and/ or my phone number by face time

    Hi there, my niece lost her iPod touch at school and in there had my phone number and my apple Id. Unknow people stolen the iPod keep calling me by face time even I changed my apple id. Can someone help me to stop them bother me like that way. They cover their face by blanket and talk crazy, if I do not accept,they will call me again and again. I am stuck ! Help me please !

    You can delete the iCloud account from her phone by going to Settings>iCloud, scroll to the bottom and choose Delete Account.  I believe you will get a prompt asking if you want to remove or keep the data on the phone; if you don't want your contacts on her phone choose delete.  As far as the contact on your old SIM card, if it is the same size as the iPhone SIM card you can put it in the iPhone and import the contacts (see http://support.apple.com/kb/HT4994).  If the SIM card won't fit, then you would need to either export the contacts to your computer using appropriate software, upload your contacts to a cloud service so you can download them to your computer, or in some cases take it and your iPhone to your retailer and ask them if they can do the transfer for you.  (It's also possible to cut a SIM card down to fit but it can be tricky to get it right.  There are articles on this if you search with Google.)  This video might help: http://www.youtube.com/watch?v=ypZpYNpfa9E.

  • How to stop the tcplisten. vi called by a sub vi

    In my application I'm calling a subVI (pop up) that use the
    TCPListen.vi to listen to a specific port. This subVI executes the
    communication function well and then exit  to return to the main
    application loop. But at this moment the client are reconnecting
    automatically  to the TCPListen server. The client should no
    reconnect to the server (the client reconnect timeout cannot be
    changed).
    I checked with the "TCPview" program from www.sysinternal.com and
    confirm that the TCPlisten server is still active on the system when I
    end the subVI application... I can end this server task only when I end
    the main labview application.
    Is there any method to "kill" or "stop"  the  server 
    application subVI  without  leaving my main program ....
    Thanks for advice
    Regards
    HaemoPhil
    Attachments:
    Get Local IP Address.vi ‏6 KB
    testtcp.vi ‏9 KB
    server.vi ‏16 KB

    HaemoPhil wrote:
    In my application I'm calling a subVI (pop up) that use the
    TCPListen.vi to listen to a specific port. This subVI executes the
    communication function well and then exit  to return to the main
    application loop. But at this moment the client are reconnecting
    automatically  to the TCPListen server. The client should no
    reconnect to the server (the client reconnect timeout cannot be
    changed).
    I checked with the "TCPview" program from www.sysinternal.com and
    confirm that the TCPlisten server is still active on the system when I
    end the subVI application... I can end this server task only when I end
    the main labview application.
    Is there any method to "kill" or "stop"  the  server 
    application subVI  without  leaving my main program ....
    You will want to close the Listen
    network reference too. The TCP Listen.vi is a high level VI that does
    everything conviniently in one VI but it does not close the server
    socket at all. What I would do instead is using the TCP Create Listener
    and TCP Wait on Listener nodes directly. AFTER you are done with the
    server, close the "listener ID" that you got from TCP Create Listener
    and have used in the TCP Wait on Listener node by wiring it to TCP Close.
    Rolf Kalbermatter
    Message Edited by rolfk on 04-26-2006 12:17 PM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How to stop the remote service call

    Hi
    On loading a screen i place some service call, now i move to next screen , but still the service call is running, i have to stop or cancel the last placed service call.Is there any way to stop the service call with out disconnecting the channel.
    thanks in advance
    karthy

    Here are the solutions I can think of (if no one here responds with something better):
    1. Open Settings and then Phone within the Settings screen and see if you can find a setting there for the call summary. The Phone submenu under Settings would be the most likely place.
    2. Open Settings on your iPhone and go through each item including all of the items within each main item. Within about 10 minutes you should be able to get through all of the settings and find the setting if it exists on your phone. There is no such setting on my phone but it is possible that Airtel has a custom menu with that.
    3. If you still haven't found it, you could check a) Airtel's support site and/or b) an Airtel specific forum.
    4. If still no luck, I would call Airtel and ask again and if you get the same response ask for the location of the setting (or to speak to someone who can tell you).
    Good luck.

  • How to stop the vi dynamically called out?

    Some vi was dynamically called out by the attached vi, may I know how to close it using the vi reference. Thanks
    Solved!
    Go to Solution.
    Attachments:
    PubSub_Start_VI_Dyn.vi ‏25 KB

    hi turbot,
    if that is running first abort that vi using invoke node and then use the property Node of that vi reference That is Front Panel Windowpen pass faulse value to close that vi. for more details check the attachment.
    Regards,
    Santhosh M
    Attachments:
    Close VI.vi ‏8 KB

  • How to stop phone from announcing calls?

    I pretty much have the same opinion as others about the kitkat update.  NOT happy with it at all.  How do you get the phone to quit announcing calls?  I've gone to phone/settings/caller ID readout is set to 'ring only'.  HELP!  I AM FRUSTRATED!

        Hello bronaud!
    I'm sorry you're having issues with the Call announcement. Please make sure your device is not in driving mode, as this will announce calls as well.
    When it comes to your battery, here's a link to extend battery life for your device: http://vz.to/1nGqghy
    Thank you,
    ChristinaB_VZW
    VZW Support
    Follow us on Twitter @VZWSupport

  • How to stop phone from dialing other numbers while I am on the phone

    Hello everyone one out there!! I have had the iphone for over a month now and I am very happy with it so far. I was somewhat hesitate from buying after reading all the horror post that users have been leaving, but with anything I must try it out myself to make my own opinion. I am very impress with my purchase. The only problem that I am having is, when I am making a call and having conversation with someone my cheek will touch the touch screen and start either instant messaging someone or calling someone. Is there a way that after I dial a number I can turn off the touch screen so that my cheek will not interfer. Any advise?

    As has been mentioned, there is a proximity sensor which is supposed to inactivate the touch screen when it is up against your face.
    By any chance, are you using a case with your iPhone? Some cases may partially or completely block the proximity sensor and prevent it from working. Try removing your case and see if things start to work normally.
    If the problem persists, you may have a broken sensor and need to get it repaired by Apple.

  • How to stop an event action when other event happen ?

    This is my first swing program
    I want to design an application with two buttons,"start" and "stop"
    Pressing "start" will start listing data
    Pressing "stop" will stop listing data immediate
    What should I do??
    I try to use a flag like the following:
    ==============================
    btnStartActionPerformed() {
    while(1) {
    if (loop_break) break;
    btnStopActionPerformed() {
    loop_break = true;
    ==============================
    but btnStopActionPerformed() will not start until btnStartActionPerformed() is finished
    What should I do?

    I agree with the thread comment...
    But if you are going to use a while loop, you can do this:
    loop_break = false;
    while(!loop_break) {
    }But if you need to stop anywhere inside the loop, you need to use if statements to check that flag between every action the while loop contains. Otherwise, you're limited to breaking whenever you check the flag, of course, or as above, before the next loop iteration.

  • How do I put digitizing window behind other windows while digitizing?

    I just upgraded to FCP 5.0.1 and ever since (while digitizing), the digitizing window stays in the forefront and I can not go on the web or work in other applications during the process. I never had this problem in the past. I'm thinking it's a preferences thing but I'm not sure.
    Applications do launch..it's just that the windows (i.e. the safari browser window) comes up behind the digitizing window. And it won't come to forefront.

    I think you're asking for trouble and dropped frames trying to do much while capturing...
    AFAIK, there is no preference to allow the window to be pushed down...
    Patrick

  • How to stop robodial scam calls

    Will the spam blocker help me?  
    Yesterday about 8:30EST I started getting calls form people saying they were contacting me about a payday loan that I'd applied for.  I told the first caller I never applied for any such loan and hung up.  I wouldn't answer the call from the second mystery number, but I got the company name (bogus I'm sure) and told them to remove my number from their list.
    After the 7th call (rather, the 7th new mystery number - some numbers dialed me twice) I called and begged Verizon for help.  All I could do was block 5 numbers, then pay $5/mnth to block 20 more.  I declined as I'd already passed 5 and had the feeling more were coming.  The only help they offered was to suggest I change my number or not answer (in case some were international, and then VZ would bill ME for the call) and the calls would eventually stop. 
    So 21 calls later I contacted the police for help.  They said they could take a police report but thats it because they could only investigate land lines.  They also said to answer the calls and tell each one I've informed the police and they'd probably stop.  I did that last night around 8pm and today I'm up to 37 calls.  I called VZ again yesterday evening and asked again if there was anything I could do and they again suggested I pay to block 20 more lines.  But at that point I was already up to 28 (again, that's 28 unique numbers, some called several times), so I figured, why bother?
    I added AVG security app to my phone so I could block any amount of calls, but of course the calls still initially come through.  And it just hangs up on them, so if you're on another call, it'll hang up on that one too.  I've disabled AVG and am desperately looking for another solution.  I'll try the robospam blocker and see if that helps.  Thanks.
    >>Branched from an earlier discussion<<
    Message was edited by: Verizon Moderator

    Of course, I got my first spam call on my phone in over a month the day after posting this... It wasn't one of those robodial recordings though.

Maybe you are looking for

  • Small App Store annoyance since 2.1......

    Hey everyone I just had a question that I wanted some input on... Ever since I upgraded to 2.1 on my iPhone 3g I keep getting prompted to enter my iTunes password as soon as I launch the App Store on my phone. Before the upgrade it would only prompt

  • Transport stalled

    HI,,                Request was transported a week back but still the request is showing import running(truck symbol). please suggest how to solve this issue.

  • Will my 2010 Macbook Air that is currently running  Lion 10.7.5 support the new Mountain Lion OS?

    I habe an older Macbook air. Its a 2010 and is currently running  Lion 10.7.5. I was wondering if it would be able to support the new Mountain Lion OS?

  • Why are all layer options greyed out in Acrobat?

    I had no issues editing and viewing layers before, but all of a sudden some of my layers are missing and my layer options are all greyed out. Please help!

  • How to remove a custom filter

    I've an interesting problem (if you want to use that word). I've a user that tried to access the Tasks.aspx page, and upon entry the grid responds with red error text saying "An error has occurred", and then the page finishes rendering. A side effect