difference defaultdataview and a normal dataview?

  • Thread starter Thread starter Danny M
  • Start date Start date
Brian Tkatch schreef:
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?
 
Danny said:
Brian Tkatch schreef:


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.
 
Brian Tkatch schreef:
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?
 
Danny said:
Brian Tkatch schreef:


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