Home All Groups Group Topic Archive Search About

3rd party grid control in Visual Basic.net 2005

Author
30 Mar 2006 9:07 AM
Stanley Sin
Dear all ,

       Could anyone suggest some good 3rd party grid control of visual
basic.net 2005? Any free?


Thanks in advance.

BR,

Stanley

Author
30 Mar 2006 11:45 AM
Martin
For a non-editable "Grid" (Where I used the MsFlexGrid in VB6) I now simply
use the Listview that comes with VS2005. It offers more or less the same
functionality, just filling it up takes some getting used to. If you want
you can even flip a few properties to make it look like a grid, including
the gridlines.

Hth,
Martin


Show quoteHide quote
"Stanley Sin" <stanley***@gmail.com> wrote in message
news:1143709648.114459.125870@i40g2000cwc.googlegroups.com...
> Dear all ,
>
>       Could anyone suggest some good 3rd party grid control of visual
> basic.net 2005? Any free?
>
>
> Thanks in advance.
>
> BR,
>
> Stanley
>
Author
30 Mar 2006 12:29 PM
Herfried K. Wagner [MVP]
"Stanley Sin" <stanley***@gmail.com> schrieb:
> Could anyone suggest some good 3rd party grid control of visual
> basic.net 2005?

Isn't the DataGridView control good enough?!

--
M S   Herfried K. Wagner
M V P  <URL:http://dotnet.mvps.org/>
V B   <URL:http://classicvb.org/petition/>
Author
30 Mar 2006 4:50 PM
Shane
Check out http://www.codeproject.com/cs/miscctrl/csharpgridcontrol.asp

The source grid is written for the 1.1 framework, but the documentation
says that it will work with 2005.

I use the version 2 of the grid, which is very flexible. The current
version is 3, but I don't have experience with that version.

The C# code is available for free for tweaking the grid.

One thing to keep in mind is the last two major release changes
completely changed the existing events, properties, and methods. Some
were eliminated. The code is NOT backward compatible with previous
major releases, and there is not upgrade wizard for your exhisting
code. I rewrote my VB.Net code once from version 1 to version 2,
because there were a lot of great features. I would like to switch to
version 3, but I don't want to reinvent the wheel again for my VB code.
I also have tweaked the current grid code, and I don't want to do that
work again ... yet.

Shane Stewart
Author
30 Mar 2006 11:23 PM
Martin
Thanks Shane, for this tip. This looks like a great grid.
I also appreciate your compatibility warnings.


Show quoteHide quote
"Shane" <shane_n***@yahoo.com> wrote in message
news:1143737405.478672.143600@i39g2000cwa.googlegroups.com...
>
> Check out http://www.codeproject.com/cs/miscctrl/csharpgridcontrol.asp
>
> The source grid is written for the 1.1 framework, but the documentation
> says that it will work with 2005.
>
> I use the version 2 of the grid, which is very flexible. The current
> version is 3, but I don't have experience with that version.
>
> The C# code is available for free for tweaking the grid.
>
> One thing to keep in mind is the last two major release changes
> completely changed the existing events, properties, and methods. Some
> were eliminated. The code is NOT backward compatible with previous
> major releases, and there is not upgrade wizard for your exhisting
> code. I rewrote my VB.Net code once from version 1 to version 2,
> because there were a lot of great features. I would like to switch to
> version 3, but I don't want to reinvent the wheel again for my VB code.
> I also have tweaked the current grid code, and I don't want to do that
> work again ... yet.
>
> Shane Stewart
>