Home All Groups Group Topic Archive Search About

difference defaultdataview and a normal dataview?

Author
31 Jul 2006 1:44 PM
Danny M
What is the difference?

Author
31 Jul 2006 2:01 PM
Brian Tkatch
Danny M wrote:
> What is the difference?

It's the part of the subtraction equation that comes after the equality
sign.

B.
Author
31 Jul 2006 2:15 PM
Danny M
Brian Tkatch schreef:

> Danny M wrote:
> > What is the difference?
>
> It's the part of the subtraction equation that comes after the equality
> sign.
>
> B.

Sorry english isnt mine first language.
Can you give an example?
Author
31 Jul 2006 5:05 PM
Brian Tkatch
Danny M wrote:
> Brian Tkatch schreef:
>
> > Danny M wrote:
> > > What is the difference?
> >
> > It's the part of the subtraction equation that comes after the equality
> > sign.
> >
> > B.
>
> Sorry english isnt mine first language.
> Can you give an example?

I was being sarcastic. You need to ask a question.

"What is the difference?" doesn't mean very much.

B.
Author
1 Aug 2006 4:52 AM
Danny M
Brian Tkatch schreef:

Show quoteHide quote
> Danny M wrote:
> > Brian Tkatch schreef:
> >
> > > Danny M wrote:
> > > > What is the difference?
> > >
> > > It's the part of the subtraction equation that comes after the equality
> > > sign.
> > >
> > > B.
> >
> > Sorry english isnt mine first language.
> > Can you give an example?
>
> I was being sarcastic. You need to ask a question.
>
> "What is the difference?" doesn't mean very much.
>
> B.

When do you use the defaultdataview(or for what) and when you use a
normal dataview?
Author
1 Aug 2006 11:56 AM
Brian Tkatch
Danny M wrote:
Show quoteHide quote
> Brian Tkatch schreef:
>
> > Danny M wrote:
> > > Brian Tkatch schreef:
> > >
> > > > Danny M wrote:
> > > > > What is the difference?
> > > >
> > > > It's the part of the subtraction equation that comes after the equality
> > > > sign.
> > > >
> > > > B.
> > >
> > > Sorry english isnt mine first language.
> > > Can you give an example?
> >
> > I was being sarcastic. You need to ask a question.
> >
> > "What is the difference?" doesn't mean very much.
> >
> > B.
>
> When do you use the defaultdataview(or for what) and when you use a
> normal dataview?

The default DataView is used by default. For example:

DataGridView.DataSource = DataTable

Is the same thing as:

DataGridView.DataSource = DataTable.DefaultView

If the data needs to be modified, or filtered before it is shown.
another DataView can be created, and the DataSource can be set to that
instead.

As a rule, i would think that unless you know otherwise, just use the
DefaultDataView.

B.