In my grid (databound to a bindinglist(of T)) I display data that can be entered by multiple users. Users should only be allowed to edit their own entries, so I need to prevent a user from entering cells with data that has been entered by other users.
What is the best way to approach this?
Hi,
I think this should point you in the right direction:
HOWTO:How can I make a grid or a column, row, or cell in the UltraWinGrid disabled or read-only?
Thanks Mike,
this allowed me to solve my problem.