PC Review Forums Newsgroups Microsoft DotNet Microsoft Dot NET Framework Forms Need lightweight custom windows grid

Reply

Need lightweight custom windows grid

 
Thread Tools Rate Thread
Old 12-12-2005, 09:44 AM   #1
Rajat
Guest
 
Posts: n/a
Default Need lightweight custom windows grid


Hi,

I am receiving data from an external source in form of events. The incoming
events are very fast. Initially I was using windows datagrid control to
display the data, but it seems to be very slow.

Please tell me, how can I create my own custom lightweight grid to solve
this issue or point me towards any custom implementation of datagrid.

Thanks & Regards,
Rajat.


  Reply With Quote
Old 13-12-2005, 07:42 AM   #2
Lloyd Dupont
Guest
 
Posts: n/a
Default Re: Need lightweight custom windows grid

http://www.codeproject.com/cs/miscctrl/XPTable.asp

--
Regards,
Lloyd Dupont

NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
"Rajat" <rajat.tandon@algorismtech.com> wrote in message
news:eNw3hCw$FHA.2520@TK2MSFTNGP15.phx.gbl...
> Hi,
>
> I am receiving data from an external source in form of events. The
> incoming
> events are very fast. Initially I was using windows datagrid control to
> display the data, but it seems to be very slow.
>
> Please tell me, how can I create my own custom lightweight grid to solve
> this issue or point me towards any custom implementation of datagrid.
>
> Thanks & Regards,
> Rajat.
>
>



  Reply With Quote
Old 24-12-2005, 12:24 AM   #3
Lloyd Dupont
Guest
 
Posts: n/a
Default Re: Need lightweight custom windows grid

so?
"Rajat" <rajat.tandon@algorismtech.com> wrote in message
news:eNw3hCw$FHA.2520@TK2MSFTNGP15.phx.gbl...
> Hi,
>
> I am receiving data from an external source in form of events. The
> incoming
> events are very fast. Initially I was using windows datagrid control to
> display the data, but it seems to be very slow.
>
> Please tell me, how can I create my own custom lightweight grid to solve
> this issue or point me towards any custom implementation of datagrid.
>
> Thanks & Regards,
> Rajat.
>
>



  Reply With Quote
Old 10-01-2006, 10:35 AM   #4
=?Utf-8?B?SsO4cmdlbg==?=
Guest
 
Posts: n/a
Default I have a similar problem.

Hi,
I have a similar problem. I am receiving data from the class SerialPort and
want to decode and display the data in rows and colums. I have been
experimenting with listview, but the flickering and time used when I am
andding an item to my listview (detail view) is insane..
To ensure that the performance issue is not coming from my data decoding I
have stripped my SerialPort Data received Event to this:
string[] str = new string[] { "1", "2", "3", "4", "5", "6", "7", "8","9",
"0123456" };
private void FrameReceived(Object sender, System.EventArgs e)
{
listView1.Invoke(new EventHandler(delegate
{
ListViewItem item = new ListViewItem(str);
listView1.Items.Add(item);
}
}

I have also tried to enable DubleBuffer on the form, but the result is the
same.
Does anyone have any suggestions to alternative controls or know a way to
get flickerfree updating of a listView?
The requirements for the list is:
1. Flickerfree
2. Autoscroll when new frames arrive
3. No need to support edit of data
4. 10 colums of data for each frame
5. Colorcoded frames
6. Selection of item should be possible


Best Regards
Jørgen

  Reply With Quote
Reply



Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off