Whats the difference between binding a dataset using:
cboCountryCode.DataSource = dsCountry.Tables("Country")
cboCountryCode.DisplayMember = "CountryCode"
txtDescription.DataBindings.Add("Text", dsCountry.Tables("Country"), "Description")
and using the defaultview option
cboCountryCode.DataSource = dsCountry.Tables("Country").DefaultView
cboCountryCode.DisplayMember = "CountryCode"
txtDescription.DataBindings.Add("Text", dsCountry.Tables("Country").DefaultView, "Description")
Thnaks in advance
cboCountryCode.DataSource = dsCountry.Tables("Country")
cboCountryCode.DisplayMember = "CountryCode"
txtDescription.DataBindings.Add("Text", dsCountry.Tables("Country"), "Description")
and using the defaultview option
cboCountryCode.DataSource = dsCountry.Tables("Country").DefaultView
cboCountryCode.DisplayMember = "CountryCode"
txtDescription.DataBindings.Add("Text", dsCountry.Tables("Country").DefaultView, "Description")
Thnaks in advance