Cool I am glad that I could help.
The one thing that I have recognized is that alot of the abstracted methods of populating grids are great time savers and do work most of the time, but I find myself using the manual manipulation of grids more and more because it ultimately gives me way more control.
I also rarely use the wizard-based decalarative tags, as I prefer to hand code the controls in the code behind. I have only found a couple of instances where I must use the HTML tags, and can not use the code behind.
Thanks for the answer Donald, indeed I even didn'(t think to make a foreach loop inside my SystemUser object !
Since I started ASP.NET (6 months ago), I always bound my object to the combo and selected the right data fields !
But thanks to you, I manually added the rows to the combo and it's working fine !
How is your SystemUser Object populated, how large is the data set (# of rows)
Why not use an unbound Combo and simply loop through your SystemUser object and add the Rows/Columns in code?