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.
