dataGridView and dataView
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi I have a datagridview (in a windows application) which its data comes from executing a StoredProcedure. This SP joins two tables and derives the data needed. what is the role of dataview in inserting a new row and updating dgv rows (and validating them) and delete rows? Can a dataview save these changes? and somehow apply them to the DB all toghether? I've done these before by applying every change to the DB and refill the dgv after that. But I think it's not the right way. and I didn't find a full sample that can guide me through this. next, to search in dgv and find the word that user wants, and somehow specify the found results (for example bolding the found words) in dgv. how it should be done? by dataview? please help