Message pagination footer in "My Threads" is erroneous

Been seeing this for a few weeks now.. (since about mid-November)...
When accessing My Threads, the footer claims more than one page of threads exist, and provides pagination links... I'v seen this happen with <20 threads in the list. Today, I have
23 threads in the list, and this is what the bottom of page 2 looks like.
Lawrence Garvin, M.S., MCITP:EA, MCDBA, MCSA
SolarWinds Head Geek
Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2013)
My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence R Garvin
http://www.solarwinds.com/gotmicrosoft
The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

Which list are you looking at? Surely you have many thousands of threads in your "My Threads".
My apologies.
Yes, i do have many thousands of threads.
This is the Unread filter, and I failed to mention that. A rather notable omission too. :-//
My point was that even though there were only 23 unread items at that point, the footer is claiming there are 55, and I'm only on the 2nd of 3 pages. In fact, if you click on Next, you'll get a blank page. The footer is miscounting the actual number of threads
in the filtered list, and thus offering a link to a non-existent page of additional threads.
Lawrence Garvin, M.S., MCITP:EA, MCDBA, MCSA
SolarWinds Head Geek
Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2013)
My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence R Garvin
http://www.solarwinds.com/gotmicrosoft
The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

Similar Messages

  • How can I separate just a message that has been mis-threaded?

    I thread all of my messages as it helps keep them organized. I occasionally run across a message that is mis-threaded. Totally unrelated to the thread it has been included in. How do I separate out just that mis-threaded message and keep everything else threaded properly? TB24.3.0, Win XP

    Are the mis-threaded messages from the same sender? Is it possible they have used "Reply" inappropriately?
    More generally, if messages appear in inappropriate places, I'd try this:
    # Back up your profile (https://support.mozilla.org/en-US/kb/profiles-tb)
    # Select the folder
    # Right-click, select <em>Properties</em>
    # Select <em>Repair folder</em>

  • Why doesn't my message show up in the thread in email on I pad.

    Why doesn't my message show up in the thread in email on iPad ?

    You're welcome.  My mistake, I completely misread your question. Unfortunately currently  I don't have any email threads to check it out, just replys from the Apple Support Communities.Sorry.

  • How to display a modal message while processing in a thread.

    I have difficulty in display a modal dialog while in processing in a background.
    I have created the following class.
    package fedex.screen.component;
    import java.awt.*;
    // This infobox is a modal dialog which display static text and stay
    // on screen without blocking proceeding code from execution and can
    // only close by issuing close method.
    public class ProcessInfoBox implements Runnable
         // Display dialog box
         private InfoBox dialog = null;
         // Thread to enable showing of Dialog Box
         private Thread thread = new Thread(this);
         // Determine if to close dialogbox
         private boolean isFinish = false;
         public ProcessInfoBox(Frame frame) {
              dialog = new InfoBox(frame,"Performing Operation","Processing...");
    thread.setPriority(Thread.MAX_PRIORITY);
         public void setTitle(String title) {
              dialog.setTitle(title);
         public void setText(String text) {
              dialog.getMessageLbl().setText(text);
         // The reference return will be ProcessInfoBox.InfoBox
         public InfoBox getInfoBox() {
              return dialog;
         // Thread method
         public void run() {
              dialog.setVisible(true);
              // If true return from thread and exit.
              while ( isFinish == false )
                   try
                        Thread.sleep(500); // 500 msec
                   catch ( InterruptedException e )
         // Start showing dialog
         final public void show() {
              thread.start();
              isFinish = false;
         final public void hide() {
              isFinish = true;
              dialog.setVisible(false);
         // Dialog box which show text.
         public class InfoBox extends Dialog
              private Label messageLbl = new Label("Processing ...");
              public InfoBox(Frame frame, String title, String message) {
                   super(frame,title,true);
                   initInfoBox();
              public Label getMessageLbl() {
                   return messageLbl;
              private void initInfoBox() {
                   setLayout(new BorderLayout());
                   add(messageLbl,BorderLayout.CENTER);
                   setSize(250,150);
    FormUtility.centerForm(this);
         public static void main(String[] args) {
              Frame frame = new Frame("BigMac");
              frame.setSize(600,600);
              frame.setVisible(true);
              ProcessInfoBox box = new ProcessInfoBox(frame);
              box.show();
              for ( int i = 1; i < 10000; i++ )
                   System.out.println(i);
              box.hide();
    To test the code I used the following section to test
    The main method in the class is used. In the simple
    example, the message did correctly update itself while
    i is increment. However, when I try on more complex
    application, the message just stalk there without
    updating itself as it is hanging.
    I have try to set piority to highest but without effect.
    Is there anything to rectify the situation
    thank

    The "please wait" dialog is a modal dialog. When u
    show it, the following code can not executed!
    That's the problem

  • Thunderbird puts a new message at the end of the thread. Is there any way of changing this preference to listing new message at top of the thread?

    Thunderbird puts a new message at the end of the thread.
    Is there any way of changing this preference so that new messages are displayed at the top of the thread.
    This is is more logical. You need to see new message in thread directly, rather than scanning to end of thread to see what is there.

    No it is not possible. The newest message is attached to the message it is in reply to.
    The conversations add-on might better suit your needs. see https://addons.mozilla.org/thunderbird/addon/gmail-conversation-view/?src=ss

  • Message queue like in C++ threads

    Hi,
    I have a question. Does java support threads sending messages to each other like in C++ threads on Windows?
    On Win32, a thread sends message to another thread. This message gets queued up in a message queue, I think, by the OS. The receiver thread can Peek or Get a message from the message queue by doing a such a request.
    Thanks.
    Tri

    That code does not check my "claim". You never directly modify the list in that code. This code does verify my "claim" ... lol
    import java.util.*;
    public class test {
    public static void main(String[] args) {
      List list = new LinkedList();
      list.add(new Object());
      Iterator itr = list.iterator();
      list.add(new Object());
      itr.next();
    }Save compile it.. run it... you'll get ConcurrentModificationException. This isn't a "claim" of mine. Iterators in java are what's called "Fail Fast". This means if you directly modify the underlying collection, then try to use the iterator again, it fails, in java with an Exception.
    In your code you posted above you had a "list.add(p);" that's a direct modification of the list. Once that happens, all iterators are invalid, and will throw an exception if used. With more then one thread this can get kinda weird. That's why Doug Lea has created the util.concurrent package. Check out the read write locks. You can put them over a collection with just a few lines of code. Much faster then fully synchronized collections. This package will appear in java version 1.5 ... check out JSR 166. Links inside the site below.. for more info.
    http://g.cs.oswego.edu

  • ERROR MESSAGE BEFORE FOOTER

    Hi
    Our database trigger raises an error (RAISE_APPLICATION_ERROR(-20111,'My message').
    The application of HTML DB generates a page with error messages on it. OK.
    The first message is displayed as it is defined in the template ("Error Page Template Control"). No problems.
    But the second message is displayed before the footer. How can I control this second message ? We do not want to show this message !
    Thank You
    Andres

    hi Andres
    I want to implement the same solution, but I have some problems.
    1. I have create the database trigger. Ok
    2. Apex messages does not change. It show me the same error message
    I tested on sqlplus and I can see my messages as follow:
    SQL> insert into user_roles values (6,'TEST_USER','LE');
    insert into user_roles values (6,'TEST_USER','LE')
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-20111: My message
    ORA-06512: at line 11
    ORA-00001: unique constraint (T$UK) violated
    3. I think Apex is taking the last messages in this case ORA-00001:
    4. In your post you say
    The application of HTML DB generates a page with error messages on it. OK.
    The first message is displayed as it is defined in the template ("Error Page Template Control"). No problems.
    Could you pls tell me how you solved? How define the message in the Error template?
    or Maybe my Trigger is wrong.
    Just in case My trigger:
    CREATE OR REPLACE TRIGGER tr_errors
    AFTER SERVERERROR
    ON DATABASE
    DECLARE
    my_exception EXCEPTION;
    BEGIN
    IF (ORA_IS_SERVERERROR(0001)) THEN
    RAISE my_exception;
    END IF;
    exception
    when my_exception then
    RAISE_APPLICATION_ERROR(-20111,'My message');
    END ;
    Thanks
    Marcelo

  • Is there a 200 message limit in an iMessage thread?

    My iPhone 4 (5.0.1) is deleting messages over four 'pages' (i.e. 200 SMS/iMessages) old in conversation threads with other iOS 5 users. No other SMS thread appears to be subject to this limit.

    Hi,
    YES THERE IS A LIMIT TO EMAILS. Only the latest 200 emails can be viewed. That´s what apple-support told me. It can´t be changed. It´s an apple thing.
    Does anyone have an idea if it´s gonna change with 3.0?
    I am receiving 30 to 90 mail per day from our ms-exchange server- so i can´t see any mails older than a week. Really funny - iphone as a business-phone....

  • Please help me with this error message on my lost Crashed Thread:  1  Dispatch queue: NSOperationQueue Serial Queue  Exception Type:  EXC_CRASH (SIGABRT) Exception Codes: 0x0000000000000000, 0x0000000000000000

    I was organizing my contatcs when suddenly it disappeared and got this error message.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    For this step, the title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter the name of the crashed application or process. For example, if iTunes crashed, you would enter "iTunes" (without the quotes.)
    Each message in the log begins with the date and time when it was entered. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ User Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of crash reports. The name of each report starts with the name of the process, and ends with ".crash". Select the most recent report related to the process in question. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.
    If you don't see any reports listed, but you know there was a crash, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • Messages in a thread won't open - Exchange iOS 8.1.1

    When I get multiple messages in a thread in my Exchange folder, I am unable to open any of the messages. They are shown with a >> at the right of the thread. Single messages open just fine, but threads with multiple messages won't open.
    This is a new problem since my upgrade to iOS 8.1.1.
    I'm seeing nothing posted about this problem anywhere.
    I've deleted this mail account and recreated it.
    I was able to open threads for a day, then not.
    Any ideas?

    I updated my iPad mini 2 this week to iOS 8.1.3.
    Unfortunately, all PDFs and many EPUBs disappeared from iBooks.
    Next i realized, that iBooks content is not saved in iCloud as part of the backup.
    For me, iBooks with EPUB and PDFs was a main reasons to buy more Apple products. Loosing them during an update is such a disaster.
    Hope, that Apple will solve this ASAP and spends a tiny fraction of the last quarter earnings into software quality ...

  • How do I turn off new threaded SMS messaging in OS 5.0?

    I upgraded to v5.0.0.328 but now all of my SMS & MMS messages are combined into long threads according to the incoming phone # or short code. That's all well & good if the messages were coming from separate phone #'s so they'd be in separate threads but the issue here is that Verizon Wireless uses the same short codes for many of it's own customer-set alerts from the My Verizon website. For example, my 2 daily horoscopes, my 2 daily stock alerts, & all of my sport team score alerts all get sent using short code 1111.
    So now in my SMS/MMS Inbox, I only see 1 listing from 1111, but when I open the subject, I get half of my screen filled w/ the keyboard automatically & now have 45 messages all on 1 screen because they're all from 1111.
    I can't find in any option menu a way to turn both the threaded functionality off & to stop having the keyboard pop automatically.
    Help please!

    I'm sorry I couldnt last any longer I actually downgraded back to the old OS
    Heres my test.
    I sent myself a text message
    Received it
    Sent another
    Received it
    If you choose delete, it will delete all messages, including the outbox.  That is one feature i do not like.  I like having the power to delete which messages I want
    But thats even beside the point
    So check this out
    I sent myself a message
    received i
    sent another (#2)
    received it
    sent a third one
    received it
    yet for some odd reason it decided to send TWO more; I was like; what the heck
    But besides this text message problem, my storm has frozen up on me on a few applications and then the screen goes completely black, and no matter what key i press, the system stays black, so I press and press and press and press til finally something pops up then it takes forever to log out................/sigh

  • Send and receive messages between threads

    Hi All,
    I am new to Java programming, I am planning to implement a simple chat server (Clients will connect from Android phones). My idea is to listen on the server on a specific port, and as soon as a connection is received on that port a new thread would be created. So far so good.
    The confusion is, I want threads to send messages to each other, for example user1 wants to send a text message to user2. How can I send the messages between threads?
    I am thinking of creating a hashtable which will hold username(key) and the queue object (value). For each connection(thread) I will store a new queue object in the hashtable - Each thread will continuously listen to its own queue. If any thread wants to send message to other, it can fetch the relative queue object and push the message in it. (Each thread knows which thread to call).
    Please advice if there is a better approach to this problem, or if I there is best practice for such problems.
    Thanks,
    Rahil

    sja wrote:
    There may be some reason to pass messages between threads, but so far I can't see it in the spec. Threads are for making several things happen at the same time. If you want to send a message from one user to another, that's one thing happening, and, unless there is some technical reason for it, no need to hand the message between threads.
    If you have a bunch of threads listening to sockets, those are not users, they are socket listening threads. The thread is not the user."Passing messages between threads" is a rather broad and ill-defined concept. However, for some valid interpretations, it's a very common and useful thing to do. The most obvious is the producer/consumer example that the OP is talking about.
    The "message" here could be the unit of work that's enqueued by one thread and dequeued by another. This message is passed simply by the enqueue/dequeue acts.
    Or the "message" could be the producer informing the consumer of the fact that there is a unit of work for him to do. This is accomplished by the underlying queue's blocking mechanism, e.g. notifyAll().

  • Separate messages that Mail incorrectly groups into a thread

    Mail occassionally will group a few emails into a thread when they're not actually part of a thread (based on similar "subject" lines or other similarities). Is there a way for me to designate specific messages/threads as not supposed to be a part of a thread? Thanks in advance.

    I think there must be also other ways
    that messages get identified as a thread
    Yes, the subject.
    because in at least one example I have,
    2 of the messages in a thread do not have matching
    "in-reply-to" fields nor matching "thread-id" fields
    in the long headers.
    They don't have to. All that is needed for them to be considered part of the same thread is that they both refer to a message in that thread. The message they refer to doesn't have to be the same for both messages in order for them to be considered part of the same thread. Or am I misunderstanding you here?
    The only similarity between the
    2 is the subject line, so far as I can tell.
    Ah! Yes, the subject is likely also being used to determine that they are part of the same thread, precisely because there is no guarantee that the In-Reply-To header was set correctly in the first place. There is no foolproof method to determine whether two messages are really part of the same thread, so mail clients do what they can (and different mail clients may do it differently). Whatever they do, there will always be messages that are categorized incorrectly.
    but it does seem too bad there's no "not a part
    of thread" button or menu option.
    Well, there are way many things that it's too bad Mail doesn't have... This one is probably not one of the most prominent, but it may be to you if you rely heavily on that feature.

  • Unable to view number of messages in a thread

    Frustrated user here who opens Mail to find that the View bar (don't know what to call it - it is that blue dot) no longer shows the number of messages in a thread. This would be bad enough - but Mail will NOT let me expand the (Read Status?) (Thread Status?) to show the number of unread threads. I can hover the mouse over the divider bar in the "To" field to make it larger or smaller. I can hover the mouse over the divider in the "Subject" field to make it larger or smaller. Same with most (but not all) of the fields. Normally, I can expand the "blue dot" (what the heck is it called????) field, but today I can't. Last time I had this problem - maybe a year ago - I could do nothing to solve it, until about a month later when in just started working again. Help anyone? OS X 10.5.2 on an iMac (20-inch Mid 2007).

    The problem mysteriously went away - just like it did the last time it happened. I can now expand the field to reveal how many messages there are in the threads. I suspect a problem with .mac mail. Maybe there are times when it doesn't know the message count (hard to say why). Anyway - the problem is not solved, but it is not (currently) present.

  • How do i delete a message and get thread to go down the list with ios8

    with ios8 if I delete a specific message from a contact the thread stays at top and when opened the last message will be from an earlier date , is there something im missing

    No, it's not there. In fact, only one of my many, many unsorted bookmarks was listed when I highlighted Unsorted Bookmarks. I've been trying to transfer my unsorted bookmarks there, but when the link is dead and jumps to a different URL, it's useless to move the page into Unsorted Bookmarks because it will be the 'new' url (the 404 error message URL) that will appear in Unsorted Bookmarks.
    It took me a really long time to find out that I could move bookmarks into Unsorted Bookmarks.
    Why has Firefox made its bookmarks so hard to organize?

Maybe you are looking for

  • OSB 11g (11.1.1.5)  Code promotion to production

    Hi , Could you please help me in the below query.... For composite(BPEL) project , As i know that we can generate configuration plan for code promotion (test env to prod env), In the same way do we have any options available for OSB projects code pro

  • Set null to :system.current_item

    I need to set null to an item in my form. Usually I'll use for example :emp.empid:=''; But I plan to use this Program Units in some items so I decide to use :system for example PROCEDURE date_check IS x varchar2(10); v_item varchar2(50):= name_in(:sy

  • Matching Color of Transparent Rectangle to Solid Rectangle

    Hi, I have a solid color rectangle on a layer. I would like to create several similar rectangles on different layers with different opacity levels (i.e. 90%/75%/50% etc), that will match the solid color rectangle exactly, when they are against a whit

  • Sudden slow wifi connection with Airport Express 802.11n

    Recently, all of a sudden I noticed the speed of my internet droped dramaticlly from ~27Mbps to ~4Mbps (Speedtest.com) Comcast's blast. When I connect my laptop directly to the modem there is no problem with the speed. I tried restarting the modem, c

  • Equipment repository design pertaining to Class Overview

    Hi Experts, I am preparing data model for Equipment repository and Equipment classification is a mandatory field to be maintained in MDM. The issue is Equipment classification has numerous enties and under each entry their is 20-30 characteristic fie