I'm not sure but I think alyeng2000's way is not applicable because DataColumn doesn't implement ICollection and because in your case you want to populate a DropDownList,just you can set the DataSource of your DropDown with one column...so even if you do something like this,you cant get your result,
Code:
ArrayList ar=new ArrayList();
ar.AddRange(dv1);
ar.AddRange(dv2);
in your case for a DropDownList the only way I think you can is iterating through all elements in your DataViews and assigning them to one
unique arraylist then set the DataSource of your DropDown to the arraylist,
(I meant from elements
ds.Tables["Counselors"].Rows[FixedNumber][j] and
ds.Tables["InactiveCounselors"].Rows[Fixed][k]).
_____________________________
Mehdi.
software engineering student.
Looking for a good job for summer 2005.