1. If I create a sorted DataView object from a DataSet table, how do I
reference the sorted elements? (Say I want to output the CustomerName
for the first row (in the sorted DataView) to a label or textbox)

VB Code:
  1. Dim view As DataView = New DataView(dsDataset.Customer)
  2. view.Sort = "CustomerID ASC"

2. If after displaying the CustomerName above for the first row in the
sorted DataView, how do I then change it's value. Normally with a
DataSet I'd use:

VB Code:
  1. dsDataset.Customer.Rows(intRowPos)("CustomerName") = "John Smith"

But how would it be done using the DataView. I know a DataView is read
only so obviously I'll have to pass a paramater to the Dataset code
above so it knows, that "this DataView row matches this DataSet table
row".

3.
VB Code:
  1. lblCustomerID.DataBindings.Add("Text", dsDataset,
  2. "Customer.CustomerID")
  3. lblCustomerAddress.DataBindings.Add("Text", dsDataset,
  4. "Customer.CustomerAddress")
  5.  
  6. cmbCustomerName.DataSource = dsDataset
  7. cmbCustomerName.DisplayMember = "Customer.CustomerSurname"
  8. cmbCustomerName.ValueMember = "Customer.CustomerID"

The above code populates and binds a ComboBox so that when a Surname is
selected it simply outputs the related CustomerID and CustomerAddress
to labels. How do I make it so that both CustomerSurname and the
related CustomerForename both appear in the ComboBox?

4. What's the alternative to Q3 if I don't wanna use Binding. This is
what i have so far:

VB Code:
  1. Private Sub FillComboBox()
  2.         Dim intCustomerRow As Integer = 0
  3.         cmbCustomerName.Items.Clear()
  4.  
  5.         Do Until intCustomerRow = dsDataset.Customer.Rows.Count
  6.  
  7. cmbCustomerName.Items.Add(dsDataset.Customer.Rows(intRowPos)_
  8.           ("CustomerSurname").ToString() & ", " &
  9. dsDataset.Customer.Rows(intRowPos)_
  10. ("CustomerForename").ToString())
  11.             intCustomerRow = intCustomerRow + 1
  12.             intRowPos = intRowPos + 1
  13.         Loop
  14.     End Sub
But all this does is fill the ComboBox with the Forenames and Surnames.
I've tried loads of code in cmbCustomerName_SelectedIndexChanged but
none works.

I know these are basic Q's, but they also tend to be difficult to find
since everyone assumes everyone else knows it.