Inserting rows between existing rows in a list view and List view Flicker

M

Miesha.James

Hello.

Is there a way you can insert a new row between current rows in a .NET
listview? I tried and it was no success. The reason I want to do
this is because when the application starts up it prints a list of
id's in the listview window. The window has to be updated every
2seconds and I would need to be able to insert the data pertaining to
a certain id under that id.

So far, I havent found a way to acheive this so I'm currently updating
the entire window and reprinting everything. Unfortunately, this
doesnt allow the user to click on the id and expand the rows and show
the information under the id or to hide the information under the id,
because the id is constantly being updated.

Also, is there a way to stop the flicker in a listview when it is
being updated?

Does anyone have any suggestions?

Thanks.
 
W

William DePalo [MVP VC++]

Is there a way you can insert a new row between current rows in a .NET
listview? I tried and it was no success. The reason I want to do
this is because when the application starts up it prints a list of
id's in the listview window. The window has to be updated every
2seconds and I would need to be able to insert the data pertaining to
a certain id under that id.

I should point out that I'm not at expert at .Net.

That said, in Win32 what you do in a case like yours is to send the listview
control a WM_SETREDRAW message inhibiting repaints, then you make the
changes, then you invalidate the control and finally you send another
WM_SETREDRAW to re-enanle display updates.

A quick google seems to imply that others who have wanted to do this have
P/Invoked the native technique that I sketched:

http://weblogs.asp.net/jdanforth/archive/2004/03/12/88458.aspx

http://www.windowsforms.net/FAQs/default.aspx?PageID=2&ItemID=193&CategoryID=22&tabindex=3

Regards,
Will
www.ivrforbeginners.com
 
B

Ben Voigt


ListView has an Items property, which in turn exposes an Insert method. Is
that what you've tried? Are you using data binding? In that case,
implement IBindingList and fire the ListChanged event passing ItemAdded in
the ListChangedEventArgs.
I should point out that I'm not at expert at .Net.

That said, in Win32 what you do in a case like yours is to send the
listview control a WM_SETREDRAW message inhibiting repaints, then you make
the changes, then you invalidate the control and finally you send another
WM_SETREDRAW to re-enanle display updates.

A quick google seems to imply that others who have wanted to do this have
P/Invoked the native technique that I sketched:

http://weblogs.asp.net/jdanforth/archive/2004/03/12/88458.aspx

http://www.windowsforms.net/FAQs/default.aspx?PageID=2&ItemID=193&CategoryID=22&tabindex=3

The .NET way is SuspendLayout/ResumeLayout, which may or may not be 100%
effective for ListView
 
M

Miesha.James

ListView has an Items property, which in turn exposes an Insert method. Is
that what you've tried? Are you using data binding? In that case,
implement IBindingList and fire the ListChanged event passing ItemAdded in
the ListChangedEventArgs.






The .NETway is SuspendLayout/ResumeLayout, which may or may not be 100%
effective for ListView




- Show quoted text -

I tried to get the index of the row I need to place the new row under
and I tried to insert the row by adding 1 to the index, but I got an
error saying that it already existed. I'm currently clearing all of
the items out of the list and rewriting them, but I think it adds to
the flicker problem and I can't add an event handler to the id column,
because it's constantly being cleared and rewritten. I will look into
the data binding.

Will, thanks for the P/Invoke idea. I haven't implemented it yet, but
I'm currently working on it.

Thanks.
 
B

Ben Voigt

I tried to get the index of the row I need to place the new row under
and I tried to insert the row by adding 1 to the index, but I got an
error saying that it already existed. I'm currently clearing all of
the items out of the list and rewriting them, but I think it adds to
the flicker problem and I can't add an event handler to the id column,
because it's constantly being cleared and rewritten. I will look into
the data binding.

Uh-uh. Don't look into databinding. I was just saying, that IF you were
using databinding, would explain why you couldn't insert a row with the
normal method (Insert).

What line of code gave you an error that the row already existed? Please
indicate the data type of each variable that appears in that line as well.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top