Is there a way to set a column protect property in a grid window?
What I am trying to do is if the user changes another column, I would like to change the protect property on the comment column on the same row, so they are allowed to add a comment.
Is this possible? I can not only find the This.object.comment.protect = 0 type stuff, which does not set the protect on a specific row. while leaving the other row comments protected... if that makes since.
Choose Case dwo.name
Case "districtscoreid"
This.object.comment.protect = 0
This.object.comment.background.color = 1090519039
End Choose
So if a user changes a district score on a row, I need to change the protect property and background color on the comment column of that same row.....