Well after searching MSDN and this forum, i've finally come to a brick wall. Here is what i'm trying to do:
I am using the following code on my DataGrid
'======================================
' Set the MappingName for the first column...
objTextCol.MappingName = "id"
' Set the new HeaderText...
objTextCol.HeaderText = "ID"
' Add the column to the DataGridTableStyle...
objDataGridTableStyle.GridColumnStyles.Add(objTextCol)
=============================================
All i want to do is retrieve the id value when the user clicks on the DataGrid row. Then, i can retrieve the detail for that record elsewhere in my code.
Help.
Thanks in advance.
Richard M.