Home All Groups Group Topic Archive Search About

datagrid and vertical gridline color

Author
28 Feb 2006 2:09 PM
gerry.brennan
Hi is there a way to change the color of the vertical gridline in a
datagrid or listview

Author
3 Mar 2006 9:49 AM
Armin Zingler
<gerry.bren***@gmail.com> schrieb
> Hi is there a way to change the color of the vertical gridline in a
> datagrid or listview


As the datagrid is not part of VB.Net, it's part of the Framework, have a
look here:
microsoft.public.dotnet.framework.windowsforms.controls


Armin
Author
3 Mar 2006 7:18 PM
Homer J Simpson
"Armin Zingler" <az.nospam@freenet.de> wrote in message
news:OGiBX4qPGHA.5152@TK2MSFTNGP10.phx.gbl...

> As the datagrid is not part of VB.Net, it's part of the Framework, have a
> look here:
> microsoft.public.dotnet.framework.windowsforms.controls

Are there any decent object model diagrams for these various "collections",
like VB, .Net, Framework etc?
Author
3 Mar 2006 10:17 PM
Armin Zingler
"Homer J Simpson" <nob***@nowhere.com> schrieb
>
> "Armin Zingler" <az.nospam@freenet.de> wrote in message
> news:OGiBX4qPGHA.5152@TK2MSFTNGP10.phx.gbl...
>
> > As the datagrid is not part of VB.Net, it's part of the Framework,
> > have a look here:
> > microsoft.public.dotnet.framework.windowsforms.controls
>
> Are there any decent object model diagrams for these various
> "collections", like VB, .Net, Framework etc?


Object models? Well, ".Net" is a marketing concept. The ".Net Framework" is
a piece of software made of the CLR and the class library
(http://msdn.microsoft.com/library/en-us/cpguide/html/cpovrintroductiontonetframeworksdk.asp).
VB.Net is a language being able to produce code meeting the requirements of
the .Net Framework, i.e. it can output IL code (intermediate language).

What I meant was: No matter which language you use, the Datagrid, it's
members and behavior and how to use it, is part of the .Net Framework class
library.


Armin
Author
3 Mar 2006 11:09 PM
Homer J Simpson
Show quote Hide quote
"Armin Zingler" <az.nospam@freenet.de> wrote in message
news:eDdJiFxPGHA.5400@TK2MSFTNGP09.phx.gbl...

>> Are there any decent object model diagrams for these various
>> "collections", like VB, .Net, Framework etc?

> Object models? Well, ".Net" is a marketing concept. The ".Net Framework"
> is a piece of software made of the CLR and the class library
> (http://msdn.microsoft.com/library/en-us/cpguide/html/cpovrintroductiontonetframeworksdk.asp).
> VB.Net is a language being able to produce code meeting the requirements
> of the .Net Framework, i.e. it can output IL code (intermediate language).
>
> What I meant was: No matter which language you use, the Datagrid, it's
> members and behavior and how to use it, is part of the .Net Framework
> class library.

I understand, but it's a SOB trying to figure out which objects are children
of which other objects etc. Some nice diagrams might help, the sort you get
for the MS Office applications.
Author
4 Mar 2006 2:18 AM
Armin Zingler
Show quote Hide quote
"Homer J Simpson" <nob***@nowhere.com> schrieb
>
> "Armin Zingler" <az.nospam@freenet.de> wrote in message
> news:eDdJiFxPGHA.5400@TK2MSFTNGP09.phx.gbl...
>
> > > Are there any decent object model diagrams for these various
> > > "collections", like VB, .Net, Framework etc?
>
> > Object models? Well, ".Net" is a marketing concept. The ".Net
> > Framework" is a piece of software made of the CLR and the class
> > library
> > (http://msdn.microsoft.com/library/en-us/cpguide/html/cpovrintroductiontonetframeworksdk.asp).
> > VB.Net is a language being able to produce code meeting the
> > requirements of the .Net Framework, i.e. it can output IL code
> > (intermediate language).
> >
> > What I meant was: No matter which language you use, the Datagrid,
> > it's members and behavior and how to use it, is part of the .Net
> > Framework class library.
>
> I understand, but it's a SOB trying to figure out which objects are
> children of which other objects etc. Some nice diagrams might help,
> the sort you get for the MS Office applications.


Which objects are you talking about? The classes in the Framework class
library? I always use the object browser and for me it's sufficient. Sorry,
I don't have a link to object/class charts.


Armin
Author
4 Mar 2006 2:39 AM
Homer J Simpson
"Armin Zingler" <az.nospam@freenet.de> wrote in message
news:OQX$jJzPGHA.2108@TK2MSFTNGP10.phx.gbl...

> Which objects are you talking about? The classes in the Framework class
> library? I always use the object browser and for me it's sufficient.
> Sorry,
> I don't have a link to object/class charts.

Things like the ListView control. Trying to add sub items was a pain esp.
when it wouldn't add them in the order I expected - still don't know why
that happens.