Clear all recents error message l

clear all messages freezes mail; cancel does not work

Triple click the Home button to bring up the multitasking bar as some call it.
Press and hold the Mail icon in the bar until it wiggles and you get the cross appear.
Shut it down that way.
Wait a minute and reopen Mail again.

Similar Messages

  • How can I put all output error message into a String Variable ??

    Dear Sir:
    I have following code, When I run it and I press overflow radio button, It outputs following message:
    Caught RuntimeException: java.lang.NullPointerException
    java.lang.NullPointerException
         at ExceptionHandling.ExceptTest.actionPerformed(ExceptTest.java:72)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.JToggleButton$ToggleButtonModel.setPressed(JToggleButton.java:291)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6038)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
         at java.awt.Component.processEvent(Component.java:5803)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4410)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2429)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)Caught RuntimeException: java.lang.NullPointerException
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)I hope to catch all these error message into a String Variable such as StrErrorMsg, then I can use System.out.println(StrErrorMsg) to print it out or store somewhere, not only display at runtime,
    How can I do this??
    Thanks a lot,
    See code below.
    import java.awt.Frame;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.io.FileInputStream;
    import javax.swing.ButtonGroup;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JRadioButton;
    public class ExceptTest extends JFrame implements ActionListener {
        private double[] a;
      private JRadioButton divideByZeroButton;
      private JRadioButton badCastButton;
      private JRadioButton arrayBoundsButton;
      private JRadioButton nullPointerButton;
      private JRadioButton negSqrtButton;
      private JRadioButton overflowButton;
      private JRadioButton noSuchFileButton;
      private JRadioButton throwUnknownButton;
      public ExceptTest() {
        JPanel p = new JPanel();
        ButtonGroup g = new ButtonGroup();
        p.setLayout(new GridLayout(8, 1));
        divideByZeroButton = addRadioButton("Divide by zero", g, p);
        badCastButton = addRadioButton("Bad cast", g, p);
        arrayBoundsButton = addRadioButton("Array bounds", g, p);
        nullPointerButton = addRadioButton("Null pointer", g, p);
        negSqrtButton = addRadioButton("sqrt(-1)", g, p);
        overflowButton = addRadioButton("Overflow", g, p);
        noSuchFileButton = addRadioButton("No such file", g, p);
        throwUnknownButton = addRadioButton("Throw unknown", g, p);
        getContentPane().add(p);
      private JRadioButton addRadioButton(String s, ButtonGroup g, JPanel p) {
        JRadioButton button = new JRadioButton(s, false);
        button.addActionListener(this);
        g.add(button);
        p.add(button);
        return button;
      public void actionPerformed(ActionEvent evt) {
        try {
          Object source = evt.getSource();
          if (source == divideByZeroButton) {
            a[1] = a[1] / a[1] - a[1];
          } else if (source == badCastButton) {
            Frame f = (Frame) evt.getSource();
          } else if (source == arrayBoundsButton) {
            a[1] = a[10];
          } else if (source == nullPointerButton) {
            Frame f = null;
            f.setSize(200, 200);
          } else if (source == negSqrtButton) {
            a[1] = Math.sqrt(-1);
          } else if (source == overflowButton) {
            a[1] = 1000 * 1000 * 1000 * 1000;
            int n = (int) a[1];
          } else if (source == noSuchFileButton) {
            FileInputStream is = new FileInputStream("Java Source and Support");
          } else if (source == throwUnknownButton) {
            throw new UnknownError();
        } catch (RuntimeException e) {
          System.out.println("Caught RuntimeException: " + e);
          e.printStackTrace();
          System.out.println("Caught RuntimeException: " + e);
        } catch (Exception e) {
          System.out.println("Caught Exception: " + e);
      public static void main(String[] args) {
        JFrame frame = new ExceptTest();
        frame.setSize(150, 200);
        frame.addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
        frame.show();
    }

    yes, I update as follows,
    but not looks good.
    import java.io.*;
    public class UncaughtLogger implements Thread.UncaughtExceptionHandler {
        private File file;
        private static String errorMessage;
        public UncaughtLogger(File file) {
            this.file = file;
            //Thread.setDefaultUncaughtExceptionHandler(this);
        public UncaughtLogger(String str) {
            this.errorMessage = str;
            Thread.setDefaultUncaughtExceptionHandler(this);
        //@Override()
        public void uncaughtException(Thread t, Throwable e){
            try {
                log(e);
            } catch (Throwable throwable) {
                System.err.println("error in logging:");
                throwable.printStackTrace();
        private void log(Throwable e) throws IOException {
            PrintWriter out = new PrintWriter(new FileWriter(file, true));
            try {
                e.printStackTrace(out);
            } finally {
                out.close();
        private static UncaughtLogger logger = new UncaughtLogger(new File("C:/temp/log.txt"));
        private static UncaughtLogger logger2 = new UncaughtLogger(errorMessage);
        public static void main(String[] args) {
                String s1 = "Hello World!";
                s1 = null;
                String s2 = s1.getClass().getName();
                System.out.println(s1);
                System.out.println(s2);
                System.out.println("errorMessage =" + errorMessage);
    }

  • We can not clear all recents(30 recents call).  When Tango show "No recents call". We touch other buttons and come back to Recents button again.  It still show 30 recents call.

    We can not clear all recents(30 recents call).  When Tango show "No recents call". We touch other buttons and come back to Recents button again.  It still show 30 recents call.

    No one here is going to do anything about it. Send feedback to Apple.
    http://www.apple.com/feedback/ipad.html
    Basic troubleshooting steps. 
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 

  • Itunes Wont Start At All No Error Messages Nothing HELP ME!!!!!!!!!!!!!!!

    My Itunes Wont Work At All No Error Message Comes Up NOTHING ive Uninstalled , Deleted the Files in c Drive and Re Installed it Over and Over Again Quicktime Works Fine But When i Open Quicktime My Itunes is on there :S its very Confusing But i still cant Sync music Onto my Ipod or Buy Any Music Please Help Me!!!!!!!

    Does iTunes.exe persist in the task manager or disappear again quickly. This can be a clue to the cause of the problem.
    If iTunes persists this points to either firewall blocking or a damaged configuration file.
    Try briefly turning off your firewall to see if iTunes will launch. Otherwise the link I will give at the end tells you how to delete the configuration file.
    If iTunes doesn't appear or appears briefly and then disappears this may be a digital signing issue, also dealt with in the link.
    It is a good idea to scan your PC for viruses and spyware, as malware can cause problems.
    Apple article on troubelshooting launch problems:
    XP version
    http://docs.info.apple.com/article.html?artnum=302856
    Vista version
    http://docs.info.apple.com/article.html?artnum=305491
    If the things I suggested above don't wiork, try working through the whole article.
    All this is on the assumption that your Quicktime is working normally. I am a bit worried that you have been installing and uninstalling different versions, it just complicates the issue.

  • I can't open my iPod library in iTunes, the app doesn't show the device at all, no error message, nothing, but windows 8 opens it like it would a flash drive. It has worked for me before just fine and both have the most updated software versions.

    I can't open my iPod library in iTunes, the app doesn't show the device at all, no error message, nothing, but windows 8 opens it like it would a flash drive. It has worked for me before just fine and both have the most updated software versions. HELP PLEASE!

    yeah i plugged in my iphone to my computer and itunes does not even notice that i plugged it in.

  • How to Inscribe all the error messages into a single package ??

    Hi,
    I want to Inscribe all the error messages into a single package., and call the concern package from the exception block in every sp by passing the error code to that package, which will return the Concern error message to the calling Sp.,
    Can any one help me out how to accomplish this ., ?
    regards
    Raja

    I want to Inscribe all the error messages into a single package., Why do you want to inscribe all the messages in a package?
    I would suggest you to store them in a table instead and you can write a functin to retrive the error messages required.
    But if your requirement is for 'Package' then assuming that you store all the error messages in a table 'error_table' (say) following code may help you .
    CREATE TABLE Error_Table (
      Error_Code VARCHAR2(10),
      Error_Desc VARCHAR2(1024));Now insert your error codes and descriptions in this table.
    CREATE OR REPLACE PACKAGE pkg_Error_Handler
    AS
      FUNCTION f_Get_Error_Message(p_Error_Code  Error_Table.Error_Code%TYPE) RETURN VARCHAR2;
    END pkg_Error_Handler;/
    CREATE OR REPLACE PACKAGE BODY pkg_Error_Handler
    AS
      FUNCTION f_Get_Error_Message
           (p_Error_Code  Error_Table.Error_Code%TYPE)
      RETURN VARCHAR2
      IS
        lv_Error_msg  Error_Table.Error_desc%TYPE;
      BEGIN
        BEGIN
          SELECT Error_desc
          INTO   lv_Error_msg
          FROM   Error_Table
          WHERE  Error_Code = p_Error_Code;
        EXCEPTION
          WHEN No_Data_Found THEN
            lv_Error_msg := 'No such error code '
                            ||p_Error_Code
                            ||' defined in the system';
          WHEN OTHERS THEN
            lv_Error_msg := p_Error_Code;
        END;
        RETURN lv_Error_msg;
      END f_Get_Error_Message;
    END pkg_Error_Handler;
    /and you can call this packaged funtion from any exception block to get the error description.
    Regards,
    Abhijit.
    N.B.: Code not tested

  • Please help me how concatenate all the error messages and send it as out parameter value.

    Hi Experts,
    Please help me how concatenate all the error messages and send it as out parameter value.
    Thanks.

    Agree with Billy, exception handling is not something that is done by passing parameters around.
    PL/SQL, like other languages, provides a suitable exception handling mechanism which, if used properly, works completely fine.  Avoid misuing PL/SQL by trying to implement some other way of handling them.

  • When clearing all recent History, data in find menu is not cleared. Is this a bug?

    When clearing all recent History, data in find menu is not cleared. Is this a bug?

    Hi Tas_n,
    The following help page will help you clear the cache which will get rid of your search history.
    [https://support.mozilla.org/en-US/kb/How%20to%20clear%20the%20cache?s=cant+clear+Find&r=4&e=es&as=s How to clear the cache]
    Further down on the webpage this can be set to clear automatically.
    Kind regards
    bouncer1966

  • Recent error message

    I have recently been getting "an error has occurred while trying to access the Apple wireless device. Make sure your network connection is valid and try again" displayed in Airport Utility. I have 1 Extreme and 3 Express's, they all show up in Airport Utility, they all can access the internet and shared files, but if I select one of them and click on either "Manual Setup" or "Continue" I get the afore mentioned error message. In the bottom left corner of this message box it says "Error -1". I have uninstalled Airport and reinstalled, and still get this message. The computer is hard wired to the Extreme and the Express's are all wireless. I have an extra hardwired connection for my laptop, and when I use Airport Utility on it I have no problems, I can access all of the devices. It is a Dell Inspiron E1705 with Windows XP. Can't understand how I can access the internet through the Extreme, but have the Utility tell me it can't access the Extreme.

    So I guess I can safely assume that I am the only one who has had this problem?

  • Clearing Designjet T790 error messages

    I use a Designjet T790 to print lots of engineering drawings, sending them all to print at once thus creating a long print queue before retiring to the print room to cut and fold them. There are times when I need to change a paper roll mid way, and sometimes this generates an error message eg 86.01 paper jam.
    Even once the jam is cleared the error message can only apparently be cleared by switching off and on again, at which point the remainder of the print queue is lost and I have to send drawings to print again.
    Is there a way of clearing error messages without losing all the remaining print jobs?

    Short answer no.  Once you get a non continuable error, the plotter must be powered down and then back on.  What bothers me is you should not get a paper jam or path error message just because you run out of paper.  You should just get a message to load paper.  Have you checked the condition of the belt and lubriacation on the rails as that is the most common issue generating the 86.01 error.

  • Clear the webdynpro error messages in Dictionary serach help window

    Hi ,
       I have a search help attached to one of the table column in table control. In the On Enter event of search help i am trowing some error messages. I am using Dictionary standard search help....
    On enter event is working fine.  My issue is when some error messages are thrown in the webdynpro view those messages are also displaying in the search help window. Whatever may be the message is showing in the webdynpro view at runtime all those messages are getting displayed when i open a searchhelp  in the table control.
    How can i clear those messages ? When its standard searchhelp where can i write the code to clear the webdynpro meesages.
    Could anybody suggest me on this....?
    Thanks & Regards
    Sireesha...

    Hi Sireesha,
    As far as I know there is no direct way to track the event of F4 window opened, so that we can clear the messages...
    Below is one solution.
    WD Standard fires an event when ever a window is opened in the application.
    The event that is fired is CL_WDR_WINDOW->IF_WD_WINDOW~WINDOW_OPENED
    This is an instance event. Please follow the below steps to handle this event
    1) Store the message manager reference in a class as a Static variable
    2) Create a Event handler for all instances (A Static event handler will suffice)
    3) Give importing parameter Sender (it will be automatically identified by the class builder and the corresponding CL_WDR_WINDOW reference will be populated into this at runtime)
    4) Now use the below code to clear the messages
      DATA lcl_window_ref TYPE REF TO cl_wdr_internal_window.
      TRY.
          lcl_window_ref ?= sender.
       CATCH cx_sy_move_cast_error.
          RETURN.
      ENDTRY.
      IF lcl_window_ref->is_value_help = abap_true.
        CALL METHOD gr_wd_msg_mgr->clear_messages
          EXPORTING
            including_permanent_msg = abap_true.
      ENDIF.
    below is how u can set the handler
    Assuming handler method is clear_msgs_on_f4wd_window_open
       SET HANDLER clear_msgs_on_f4wd_window_open FOR ALL INSTANCES.
    Please let me know if you need more help
    Thanks,
    Anand

  • Using JavaScript need to clear speach bubble error messages

    Hi,
    I used AdfPage.PAGE.clearMessages(null); in javascript to clear the error message, But it will not clearing the error message(speach bubble error message), it will clearing only when ADF popup Error Messages.
    Example:
    I entered wrong date in the DateField, it shows speach bubble error message "Wrong Date Format -- Enter correct format".
    Using accessKey, I am resetting (Ctrl + t) the page. It is not resetting the page.
    If the error message is in popup, then it clearing the error message as well as resetting.
    Can anyone helpme to provide solution to clear the speach bubble error message in javascript.
    Thanks in Advance

    Hi,
    Can you explain me how to clear using field focus listener instead of a key combination for inputDate combnation.
    Thanks

  • My microsoft office programs (Home and Business 2013) all desplay error message at startup stating " non-commercial use, not licenced product". How do I fix this?

    Hi,
    Whenever I start any of my microsoft programs I get an error message stating "non-commercial use, not licenced product" and I cannot do anything in the programs. I havve the Home and Business 2013 version.
    My husband bought the office programs for his and my computer and so they are both registered to his name however my email is the login, I dont know if this is relevant.
    How do I fix this?

    Hi,
    Based on your description, several possibilities come to my mind.
    1. You mentioned your husband bought the Office Suite for you, did he purchase one product key or two? We need to confirm if the product key can be installed on multiple machines, if a product key can be only installed once and he installed it
    on his computer first, you should purchase a new product key to activate your Office.
    Since the policy differs in different areas, to confirm how many machines the product key can be installed on, let your husband ask the retailer or contact the local customer service to get the answer:
    http://support2.microsoft.com/gp/customer-service-phone-numbers/en-us
    2. Please confirm your Office version. Based on the message "non-commercial use", I found this kb:
    http://support.microsoft.com/kb/937676/
    But it's for Office Home and Student instead of Office Home and Business, we can perform the steps below to find the Microsoft Software License Terms:
    1. Start and Office program.
    2. On the File (Backstage) tab, click Account.
    3. Click About (Product name: Word, Excel etc..), in the window that opens, click
    View the Microsift Software License Terms link.
    3. If your Office is a trial version or the product key is not for the version that you are using, consider to uninstall it first, and install the appropriate version. You can probably get the installation media from your husband.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Update failures all apps - error message U44M1P36

    had not updated in some time. downloaded Creative Cloud and tried only to get the above error message.  What does it mean?  How can I update?

    Hi Roger3322,
    Please refer the article: http://helpx.adobe.com/photoshop/kb/photoshop-cs6-updates-dont-install.html and attach the log files.
    Regards,
    Romit Sinha

  • Possible to catch all XI error message?

    Is it possible to catch all XI errror  and save it, including abap proxy runtime, j2ee adapters.
    anybody give me a clue?

    Hi Shen Peng,
    Please refer to below table for logs. Ideally you are not recommendated to make any changes to these tables.
    If you are looking to show all possible errors to your customer then, prepare a report based on the Early Watch Alert report and show it your customer at high level and if you try to show every alert/log that generated in the system to the customer then you it will be high task for you to explain each and every entry.....I rather suggest you give the high level report.
    Because many alerts/logs are temporary and not that critical to explain to the customer unless it's impacting the business.
    ABAP -Syslog entries
    TSL1D and TSL1T - syslog entries
    Java related log files
    XI_AF_MSG_AUDIT  audit log entries
    BC_MSG_AUDIT  PI 7.1 audit log entries (**) 
    SXMSALERTLOGGER  XI alerts log 
    I hope this info helps you.
    Regards
    Sekhar

Maybe you are looking for