Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Right now, I have a DataRow[] that I am filling by using the .Select method. Here is the code:

DataRow[] drSortEngineer = dsTimesheet.LookupEngineerGroup.Select("", "[fkProjectManagerID], [EngineerName] ASC");

This is being sorted in ascending order based on their name, but I would like to manually enter something in the parameter so the order comes out in the way that I choose.

For example, instead of Adam, Bob, Cameron which is similar to what it is doing now, I would like Bob, Cameron, Adam.

And also, right now it will fill all the DataRows from the ds but some engineers are no longer active so another reason why I want to do this is so that I do not add said people.

share|improve this question
How do you come up with Bob, Cameron, Adam? Is this just some random order of your choosing, or is there another key? – Justin Pihony Jan 31 at 17:29
@JustinPihony Just some random order that I get to choose. – Jackery Xu Jan 31 at 17:31
I'm thinkg about adding some textboxs, get from them the filter requeriments that you want to sort. And add them to your select command. – BrOSs Jan 31 at 17:43
2  
If there's no order, how do you expect to sort the records? Magic? – Dave Zych Jan 31 at 17:44
@DaveZych I thought there might have been a way to manually input an order – Jackery Xu Jan 31 at 17:51
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.