Sort a field for this code is used
Code: Select all
DataBand1.Sort = new string[2]
{
"ASC",
"Name"
};thank you
Code: Select all
DataBand1.Sort = new string[2]
{
"ASC",
"Name"
};Code: Select all
DataBand1.Sort = new string[]
{
"ASC",
"Field1",
"ASC",
"Field2"
};