Dataviews

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • mfleet1973@yahoo.ca

    #1

    Dataviews

    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!

  • Leon Mayne

    #2
    RE: Dataviews

    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"

    Comment

    Working...