How to reverse listview?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jozef Jarosciak

    #1

    How to reverse listview?

    Hi, my program is adding (every hour) a line to listview and into its 7
    columns.

    Problem is that it is adding it to the bottom of the list, so after
    couple of hours, my users need to scroll down to see the most recent
    results.

    What I'd like is to have some function to reverse listview order after
    I add the line.

    Thanks.

    Jozef Jarosciak

  • Kerry Moorman

    #2
    RE: How to reverse listview?

    Jozef,

    If you use Insert instead of Add you can specify the location for the new
    item.

    Kerry Moorman


    "Jozef Jarosciak" wrote:
    [color=blue]
    > Hi, my program is adding (every hour) a line to listview and into its 7
    > columns.
    >
    > Problem is that it is adding it to the bottom of the list, so after
    > couple of hours, my users need to scroll down to see the most recent
    > results.
    >
    > What I'd like is to have some function to reverse listview order after
    > I add the line.
    >
    > Thanks.
    >
    > Jozef Jarosciak
    >
    >[/color]

    Comment

    • Jozef Jarosciak

      #3
      Re: How to reverse listview?

      I know, but my whole design is around "add".
      I just need to reverse the list chronologically .
      joe

      Comment

      • Bob Lehmann

        #4
        Re: How to reverse listview?

        But, if your design doesn't meet the requirements, then what use is it?

        Bob Lehmann

        "Jozef Jarosciak" <joe@doprocess. com> wrote in message
        news:1121466048 .956573.19250@o 13g2000cwo.goog legroups.com...[color=blue]
        > I know, but my whole design is around "add".
        > I just need to reverse the list chronologically .
        > joe
        >[/color]


        Comment

        • Jozef Jarosciak

          #5
          Re: How to reverse listview?

          Thanks Bob.
          Anyways, it's all fine now. Figured a work around.
          Joe

          Comment

          Working...