Dataviews

  • Thread starter Thread starter mfleet1973
  • Start date Start date
M

mfleet1973

Hello.

Is it possible to have more than one field in the sort of a dataview?
For example, DataView1.Sort = "Field1, Field2".

Thanks a lot!
 
Is it possible to have more than one field in the sort of a dataview?
For example, DataView1.Sort = "Field1, Field2".

Yes, from the .NET help files:

myDataView.Sort = "State, ZipCode DESC"
 
Back
Top