|
My datagridview has to have noneditable rows except for the ones that are new.
I have set AllowUsersToAddRows true for the grid. This adds a row at
the bottom and user can enter the data. I want the new rows to be
editable. Also the copy and pasted rows should be editable. So I added
a flag to the database . If this flag is 'Y' I want to make those rows
noneditable but for the new rows I want to initially set the flag to
'N'.
In which datagridview should I set the datagridview.currentrow.Readonly=true;
I am a newbie...please help...
|