Sort two fields at runtime

Stimulsoft Reports.NET discussion
Post Reply
so29
Posts: 72
Joined: Mon Nov 02, 2009 1:29 pm

Sort two fields at runtime

Post by so29 »

hi
Sort a field for this code is used

Code: Select all

DataBand1.Sort = new string[2]
{
"ASC",
"Name"
};
How the two fields should be sorted ؟؟

thank you
Brendan
Posts: 309
Joined: Sun Jul 16, 2006 12:42 pm
Location: Ireland

Sort two fields at runtime

Post by Brendan »

Code: Select all

DataBand1.Sort = new string[]
{
    "ASC",
    "Field1",
    "ASC",
    "Field2"
};
so29
Posts: 72
Joined: Mon Nov 02, 2009 1:29 pm

Sort two fields at runtime

Post by so29 »

thank you Brendan
kiss you :kiss:

Post Reply