I get a "Read Only" message on 'Grid.Cells(x, yy) = Grid.Cells(x, y).Value' below.
????
Please Help
Private Sub Grid_SelectionChanged(sender As Object, e As System.EventArgs) Handles Grid.SelectionChanged
Dim x As Integer, y As Integer, yy As Integer
Dim Amt As Double
For Each myCell As iGCell In Grid.SelectedCells
x = myCell.RowIndex
y = myCell.ColIndex
Next
yy = 0
Select Case y
Case 3 : yy = 5
Case 4 : yy = 6
End Select
If yy > 0 Then
Grid.Cells(x, yy) = Grid.Cells(x, y).Value
End If
End Sub