Hello everyone
I have the following issue and i tried google but no success. I'm tired of this silverlight thing but i have no choice.
here is the problem:
I have a datagrid which populates itself from a database doing this
void svr1_getInformationCompleted(object sender, getInformationCompletedEventArgs e)
{
dgv.ItemsSource = e.Result.ToList();
}
there is no problem there and I can see my datagrid with the information.
My datagrid has the following 3 columns:
Number, name, desc
And also i have a textbox named txtlastrep.
what i need to do is to get from column name the last row and display it on txtlastrep.
i tried several sites with different solutions but no success.
hope someone can help me. thanks in advance.