Master / Detail datagridview with relation from type string in C#
- by Daniel
Hello,
I want to show a master / detail relationship using two datagridviews and DataRelation in C#.
The relation between the master and the detail table is an ID from type string (and there is no chance to change the ID to type integer).
It seems like the DataGridView is not able to update the detail view when changing the row in the master table.
Does anybody know if it is possible to achieve a master / detail view using a string ID and if yes, how? Or do I have to use an external DataGrid from another company?
Thanks for any help
Daniel