Hello.
How do I disable a particular row of an UltraWinGrid leaving the others enabled? I am using Visual Studio.
Hi
I finally found how to do it:
for i = 0 to Grid1.Rows.Count - 1
if --row i is the one I want to deactivate-- then
Grid1.Rows(i).Activation = Infragistics.Win.UltraWinGrid.Activation.NoEdit
end if
next i