Hey there.
Its Ruan
I have a little problem. I have a column Student number, and i can access all the individual student number values in the database ACCEPT one... the very last one in the column.
this is my code
String StudentNumber = myDS.Tables[0].Rows[myDs.rows.count]["Student_Nr"].ToString();
but when i do that , it says that there isnt a row there.
but then when i do this..
String StudentNumber = myDS.Tables[0].Rows[myDs.rows.count-1]["Student_Nr"].ToString();
it gives me the SECOND last row...
i have no idea why, it breaks the bounds of logic and its on the verge of breaking the bounds of Gravity...
Thank you =)