473,396 Members | 2,036 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

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

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.

Apr 4 '07 #1
4 3767
<Mi**********@gmail.comwrote in message
news:11**********************@e65g2000hsc.googlegr oups.com...
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/arc.../12/88458.aspx

http://www.windowsforms.net/FAQs/def...=22&tabindex=3

Regards,
Will
www.ivrforbeginners.com
Apr 4 '07 #2

"William DePalo [MVP VC++]" <wi***********@mvps.orgwrote in message
news:uM****************@TK2MSFTNGP02.phx.gbl...
<Mi**********@gmail.comwrote in message
news:11**********************@e65g2000hsc.googlegr oups.com...
>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.
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/arc.../12/88458.aspx

http://www.windowsforms.net/FAQs/def...=22&tabindex=3
The .NET way is SuspendLayout/ResumeLayout, which may or may not be 100%
effective for ListView
Regards,
Will
www.ivrforbeginners.com


Apr 5 '07 #3
On Apr 5, 4:36 pm, "Ben Voigt" <r...@nospam.nospamwrote:
"William DePalo [MVP VC++]" <willd.no.s...@mvps.orgwrote in messagenews:uM****************@TK2MSFTNGP02.phx.gb l...
<Miesha.Ja...@gmail.comwrote in message
news:11**********************@e65g2000hsc.googlegr oups.com...
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 alistof
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.

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/arc.../12/88458.aspx
http://www.windowsforms.net/FAQs/def...ItemID=193&Cat...

The .NETway is SuspendLayout/ResumeLayout, which may or may not be 100%
effective for ListView
Regards,
Will
www.ivrforbeginners.com- Hide quoted text -

- 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.

Apr 6 '07 #4
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.
>
Will, thanks for the P/Invoke idea. I haven't implemented it yet, but
I'm currently working on it.

Thanks.

Apr 9 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Marko Poutiainen | last post by:
Situation: We had to make our SQLServer 2000 database multi-lingual. That is, certain things (such as product names) in the database should be shown in the language the user is using (Finnish,...
4
by: Little PussyCat | last post by:
Hello, I have had a request, one of our tables is used as a report and I have been asked that all fieldnames for months have dashes in them, like Jan-05 instead of Jan05 and so on... Now what...
3
by: Joachim Klassen | last post by:
Hi all, first apologies if this question looks the same as another one I recently posted - its a different thing but for the same szenario:-). We are having performance problems when...
13
by: Dixie | last post by:
How do I, in VBA from an access form module, add 5 rows to the top of a spreadsheet called MySpreadsheet.xls. The worksheet is called MyWorksheet and there is already data in the first 5 rows. I...
2
by: a | last post by:
NEW Post Here's my best guess at how to insert this dataset.... the code runs, but no new records are added to the sql table. I've read and split a delimited text file into a dataset. It...
11
by: Mellow Crow | last post by:
I had a problem in IE 6 when trying to insert a table using W3C DOM techniques. I found a solution and share it. :) Initially I had...... ********************** <!DOCTYPE html PUBLIC...
6
by: Mike Wilson | last post by:
Dear Group, I have a heirarchical set of database tables, say - "order" and "order_type" and want to display a series of orders in a grid control, and in place of the order_type foreign key...
3
by: rcoco | last post by:
Hi, I want to share this problem. I have a datagrid that will help me Insert data into sql database. So I made a button On my form so that when I press the button a new row on datagrid should be...
3
by: BNW | last post by:
Hi I'm trying to find a way in inserting a new row between an existing row in an Access Table just like an Excell Spreadsheet. The reason I need to know is because I have information in a table...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.