Hanging up on people? here's help

Hang up issue idea....
I usedto hang up on people daily but then I figured how not to do that anymore...
1) place call
2) once call has started, hit the little house symbol to go back to home screen and you won't hang up on people!!
3) once call is over, you can verify call stopped by sliding that top icon like line down that has all the symbols etc at the top of the screen and it will show a green phone if current call hasn't disconnected yet and you can hang up call yourself (like when other person has call waiting and it didn't disconnect your call when they switched over)...
Hope this makes sense and helps!! It was my life saver when my mom thought I was the one hanging up on her... lol

jnt - thank you for your original post.  Don't be discouraged by the handful of people who have to make a personal comment much of the time.  The majority of people on this forum are looking for help, a place to vent or offer assistance. 
FYI - My phone will hang up when I am using the speakerphone and not touching the screen.  This happens much more than the occasional dropped call. 

Similar Messages

  • HttpConnection hangs in my T630. Please Help !

    Hi all,
    I`ve noticed this problem in a few threads on this forum, but none of them seem to have a definitive answer. Maybe we can answer it once and for all here :-) Any help would be greatly appreciated.
    I`m trying to load a web page from a midlet in my T630. As I don`t really want to pay for call charges during development, I`m using the "Device Explorer" and the "Connection proxy" to try and connect to the internet using my broadband connection. I'm using the SonyEricsson developer kit (version 1) and I'm using a bluetooth serial connection on COM5 for the connection proxy.
    I've based my code on some sample code from Sun to load some info from a web page. This code was even published to get around the IO blocking problem that I seem to be getting still !
    The problem is when I try and use the HttpConnection.getResponseCode() method. Using the advice of other internet resources, I`ve put this code in its own thread. When I call HttpConnection.getResponseCode(), my T630 then pops ups with a menu, offering me these 3 options:
    Allow Web access
    Ask per access
    Deny Web access
    When this happens, it`s as if the thread running the getResponseCode() method blocks, and the T630 OS takes over. When I select an item from that menu, control does not pass back to the thread running getResponseCode(), but goes to the main midlet thread. Once I`m back in the main midlet thread, I don't know how to wake up the url loading thread. Does anyone have any ideas.
    My debugging statements produce the following before the app hangs:
    url=http://java.sun.com
    conn=com.sun.midp.io.j2me.http.Protocol@e4857a1d
    here
    Connecting to http://java.sun.comHere is the source code:
    package com.pg.midp.http;
    import java.io.IOException;
    import javax.microedition.io.Connector;
    import javax.microedition.io.HttpConnection;
    import javax.microedition.lcdui.Alert;
    import javax.microedition.lcdui.Command;
    import javax.microedition.lcdui.CommandListener;
    import javax.microedition.lcdui.Display;
    import javax.microedition.lcdui.Displayable;
    import javax.microedition.lcdui.Form;
    import javax.microedition.lcdui.StringItem;
    import javax.microedition.lcdui.TextBox;
    import javax.microedition.midlet.MIDlet;
    import javax.microedition.midlet.MIDletStateChangeException;
    // Simple class that connects to a given URL and
    // prints out the response code and any headers
    // that are sent back. Shows how to use background
    // threads to make HTTP connections while keeping the
    // user interface alive.
    public class HttpLogger extends MIDlet
         private Display display;
         private Command exitCommand = new Command([quot][/quot]Exit[quot][/quot], Command.EXIT, 1);
         private Command okCommand = new Command([quot][/quot]OK[quot][/quot], Command.OK, 1);
         private Command cancelCommand = new Command([quot][/quot]Cancel[quot][/quot], Command.CANCEL, 1);
         private URLEntry mainForm;
         // Standard MIDlet stuff....
         public HttpLogger()
         protected void debug(String s)
              System.out.println(s);
         protected void destroyApp(boolean unconditional) throws MIDletStateChangeException
              exitMIDlet();
         protected void pauseApp()
         protected void startApp() throws MIDletStateChangeException
              if (display == null)
                   initMIDlet();
         private void initMIDlet()
              display = Display.getDisplay(this);
              mainForm = new URLEntry();
              display.setCurrent(mainForm);
         public void exitMIDlet()
              notifyDestroyed();
         // Utility routine to display exceptions.
         void displayError(Throwable e, Displayable next)
              Alert a = new Alert([quot][/quot]Exception[quot][/quot]);
              a.setString(e.toString());
              a.setTimeout(Alert.FOREVER);
              display.setCurrent(a, next);
         // Simple entry form for entering the URL to
         // connect to.
         class URLEntry extends TextBox implements CommandListener
              URLEntry()
                   super([quot][/quot]Enter URL:[quot][/quot], [quot][/quot]java.sun.com[quot][/quot], 100, 0);
                   addCommand(exitCommand);
                   addCommand(okCommand);
                   setCommandListener(this);
              public void commandAction(Command c, Displayable d)
                   if (c == exitCommand)
                        exitMIDlet();
                   else if (c == okCommand)
                        try
                             String url = [quot][/quot]http://[quot][/quot] + getString();
                             debug([quot][/quot]url=[quot][/quot] + url);
                             HttpConnection conn = (HttpConnection) Connector.open(url);
                             debug([quot][/quot]conn=[quot][/quot] + conn);
                             Logger logger = new Logger(this, conn);
                             debug([quot][/quot]here[quot][/quot]);
                             display.setCurrent(logger);
                        catch (IOException e)
                             displayError(e, this);
         //      Simple form that contains a single string item.
         //      The string item is updated with status messages.
         //      When constructed, it starts a background thread
         //      that makes the actual HTTP connection. Displays
         //      a Cancel command to abort the current connection.
         class Logger extends Form implements Runnable, CommandListener
              private Displayable next;
              private HttpConnection conn;
              private StringItem text = new StringItem(null, [quot][/quot][quot][/quot]);
              boolean done = false;
              Thread t;
              Logger(Displayable next, HttpConnection conn)
                   super([quot][/quot]HTTP Log[quot][/quot]);
                   this.next = next;
                   this.conn = conn;
                   addCommand(cancelCommand);
                   setCommandListener(this);
                   append(text);
                   t = new Thread(this);
                   t.start();
              // Handle the commands. First thing to do
              // is switch the display, in case closing/
              // the connection takes a while...
              public void commandAction(Command c, Displayable d)
                   display.setCurrent(next);
                   try
                        conn.close();
                   catch (IOException e)
                        displayError(e, next);
              // Do the connection and processing on
              // a separate thread...
              public void run()
                   try
                        update([quot][/quot]Connecting to [quot][/quot] + conn.getURL());
                        try
                             int rc = conn.getResponseCode();
                             update([quot][/quot]Response code: [quot][/quot] + rc);
                             update([quot][/quot]Response message: [quot][/quot] + conn.getResponseMessage());
                             String key;
                             for (int i = 0; (key = conn.getHeaderFieldKey(i)) != null; ++i)
                                  update(key + [quot][/quot]: [quot][/quot] + conn.getHeaderField(i));
                        catch (IOException e)
                             update([quot][/quot]Caught exception: [quot][/quot] + e.toString());
                   catch (Exception e)
                        debug(e.getMessage());
                        e.printStackTrace();
                   finally
                   done = true;
                   removeCommand(cancelCommand);
                   addCommand(okCommand);
              // Update the string item with new information.
              // Only do it if we're actually visible.
              void update(String line)
                   debug(line);
                   if (display.getCurrent() != this)
                        return;
                   String old = text.getText();
                   StringBuffer buf = new StringBuffer();
                   buf.append(old);
                   if (old.length() [gt][/gt] 0)
                        buf.append('\n');
                   buf.append(line);
                   text.setText(buf.toString());
    }Thanks,
    Paul.

    Hi, Paulgrime:
    These days I also have struggled with the problem.
    I just saw a java example from SUN site, which does not use getResponseCode(). It seems a good work around.
    I tried that way and works fine. Only thing is you have to figure out the response status by analysing the inputstream content, which is actually easy.
    So I go this way now.
    Huiyi

  • Hello. is somebody here to help me out fix a problem

    is somebody here to help me out fix a problem

    Yep, lots of people here likely can help you fix your problem, as soon as you tell us what it is.

  • TS1559 My Wi-Fi setting is gray and I cannot do anything to it.  Anyone know where to go on here for help?

    My Wi-Fi is gray where I cannot select on or off when I go into settings; therefore, i cannot do anything wirelessly. Does anyone know where to go on here for help or have any suggestions?  I would greatly appreciate it.

    Generally an indication of a hardware failure. Try restoring your phone as a new device in iTunes. Eject when finished...don't sync any content to the phone. WiFi still grayed out? If so, most likely a hardware failure. Make an appointment at an Apple store to confirm.

  • How do i reinstall mountain Lion after installing maverick. Maverick  is not compatible with FileMaker 13 server. Maverick is now objecting to reinstalling Mountain Lion. Where do I go from here? Help?

    How do i reinstall mountain Lion after installing maverick. Maverick  is not compatible with FileMaker 13 server. Maverick is now objecting to reinstalling Mountain Lion. Where do I go from here? Help?

    If you can download the ML installer you can make a bootable install media by using:
    http://liondiskmaker.com/
    If your Mini came with ML you can also boot to Internet Recovery
    OS X: About OS X Recovery
    and it will install ML. Make sure you boot to Internet Recovery and not the Recovery Partition. If to the partition you will only get Mavericks.

  • HT201302 Hi People! please help...I want to know how can i get photos from ipad to the computer, that were synchronized previously to ipad but from another pc that i dont have access anymore and these pics are now only found in this ipad and no other plac

    Hi People!
    Please help...I want to know how can i get photos from ipad to the computer, that were synchronized previously to ipad but from another pc that i dont have access anymore and these pics are now only found in this ipad and no other place.

    Hi Alan,
    Thanks for the help, but i've actually done that before.
    It does not help, because it only shows the photos on the camera roll and do not show the photos synchronized with that pc that i dont have access anymore.
    The photos/albums all appear on the ipad, i can see it without problems but i cant get them out of the ipad to save onto pc for backup.
    And i reaaly need it, as it is the only place that i actually have these photos now...

  • TS1424 I tried downloading an app but it says there is an error and asked me to come here for help. How?

    I tried downloading an app but it says there is an error and asked me to come here for help. How?

    If you are getting a message to contact iTunes Support then you can do so via this link and ask them for help (we are fellow users here on these forums, we won't know why you are getting the message) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Running Mac 10.5.8 Updated to FF 8.0 - keeps crashing whenever FF opens - can not launch safe mode either - looks like many people here are having same issue - solutions all keep saying it ha.... see detail

    Running Mac 10.5.8 Updated to FF 8.0 - keeps crashing whenever FF opens - can not launch safe mode either - looks like many people here are having same issue - solutions all keep saying it has something to do with roboform 7.6.2 (which is for windows) or the profile. I have created new profile and updated the mac roboform - still no luck - have sent in MANY crash reports with no response ( one was Crash ID: bp-0eea6eb2-aba3-478a-bfb1-8f00d2111110 ) - anyone else find solution other than roboform or profile, or how do i get back to prior version?

    Any suggestions?
    My mail is still not functioning and crashes everytime I open it or check archived messages.

  • [ShareIt] "Click here for help" link can't link to releated website.

    Install  ShareIt2.1.14.0 on Windows8.1 64bit OS, after installed successfully, launch ShareIt, click "Click here for help" link, it display "This page can’t be displayed".

    Any suggestions here?

  • I am new here ,please help me.....

    i am from China, so i am poor in english ,i will try my best to describ my question.
    I booked a iphone4s from app store web of Canada,and  I was charged 738 CAD from my credit card including the fax , and then i canceled my order, Why not return the money in my account. and should i still pay the fax fee? please give me a tip.thx.
    sorry for my poor english, sorry

    There is no one from Apple here, thus no one here can help you. You need to contact Apple directly. Contact info is on the web site where you originally ordered your phone.

  • My conference call isn't working I can hang up on people individually

    My conference call isn't working I can hang up on people individually

    I would never recommend tinyumbrella. I've had to respond to hundreds of posts from people who used it and found the it trashed the network database on their computer.
    If you can't recover using approved methods rather than hacking your phone (which is what tinyumbrella does) then you've probably got a hardware problem.
    So what should you do? First, connect it to a charger for 15 minutes. If it doesn't recognize the charger try a different one and a different cable. Then hold the HOME and SLEEP buttons at the same time until an Apple logo appears. Hold up to 1 minute. If nothing happens your phone really is broken, either a broken connector or a bad battery.
    If you DO get some response see this: http://support.apple.com/kb/HT1808
    Of course, if you have already tried tinyumbrella this won't work until you repair the damage to your network database on your computer. But we'll cross that bridge when we come to it.

  • I originally encrypted my hard disk. instead of just reformatting. I deleted hardisk entirely. Now I cant login. or do anything. I am in Afghanistan so internet is slow, I cant send it in the mail, and there surely isnt a apple store around here. HELP!!

    I originally encrypted my hard disk. instead of just reformatting. I deleted hardisk entirely. Now I cant login. or do anything. I am in Afghanistan so internet is slow, so I cant reinstall lion software via internet. I cant send it in the mail, and there surely isnt a apple store around here. HELP!!

    Didn't want to make you feel like an Idiot. Just pointing otu that most all externals come, these days, formatted NTFS as the world runs on Windows computers and at least the last 2 Win OS version will only install and likes to use NTFS formatted drives. So most drive manufacturers Pre-Format their drive in that format.
    What do you mean "I'm Cloning Time Now"? I don't get the TIME reference?
    You Clone the install of OS X from a working Mac to the External. The Cloning willl make that external Bootable (It will boot on like Mac computers).
    Then when that is done disconnect that external and connect it to your Mac. Start your Mac and it should boot off that external. If it doesn't then Restart and hold down the Option key and select the external as the boot drive.
    Once the your Mac starts from the external the cloning program should already by running as it was running whenn the clone was made. Select the external as the source and your internal as the destination. you may want to shut the cloning program down and first use Disk Utility to Re-Partition your drive as One Partition.
    Hopefully that will get rid of the encryption you enabled and give you a clean freshly formatted drive to clone to.
    Then start up the cloniing software and do as pointed out above.

  • I tried to erase and reset my iphone4 but its more than 8 hours just hanging, nothing is happening, can someone help please?

    I tried to erase and reset my iphone4 but its more than 8 hours just hanging, nothing is happening, can someone help please?

    unplug the iphone from you computer.
    quit itunes.
    re-open itunes.
    connect iphone
    quickly begin to hold down both home button and sleep/wake for around 7/8 seconds.
    as soon as the iphone screen goes black release finger from sleep/wake button but continue to hold home button.
    an apple logo should appear on the iphone screen
    continue to hold down home button
    itunes should now let you know it has detected a phone in recovery mode.
    choose to restore iphone.
    once completed restore from back up if desired.

  • Would you mind help from some of the Via people here?

    Do you mind if some of the Via K8 people help you guys out with tech support?

    Quote
    Originally posted by SAB
    orion24...How do you like the performance of that Zalman PSU?!!!
    Also, thanks for sharing that important info on RAM!!!
    P.S. That's why Tiresmoke started this thread!!
    Well it sure is more quiet than any other PSU I've ever had. It has large passive coolers inside and it is clear that it's designed not to be noisy. It's fan speed is automatically controlled by the PSUs temperature. Actually it is quiet, but right now it's the most noisy part of my PC. Probably because it's summer . . .
    Performance-wise I've never had a problem with it, but I'd be interested to find out if it can afford a GeForce 6800 Ultra with my CPU overclocked. You can find a review for this PSU at Tom  : http://www6.tomshardware.com/howto/20030609/index.html
    Zalman has released an enhanced version of this PSU, however, (I think 400B-APF) that might suberb this one in every sector

  • No Qualified People Here?   Need Help with Contact - Linking Email

    I have two pages - XML, I'll post photos . Just need to link it to my email and also I page to link social buttons.

    It is getting late here, nearly 3:00 am.
    I'll get back to you later on. But I am still in a quandary regarding the question. What I have now is
    you post photos, presumably to the website
    you send an email to yourself with a link to the image
    somewhere (please state where) you want social media images with their relative links
    I just want to link it to my own email - probably refers to point 2 above
    so when someone sends it to me - someone sends what to you. Do you post the iphoto or does it get uploaded by someone else.
    we need to disregard the XML-file

Maybe you are looking for