我想將MSFlexGrid升級到.net datagridview, 這些代碼的等效代碼是什麼?將VB6 MSFlexGrid升級到VB.NET
With gridview
If .Row > .FixedRows Then
bDoNotEdit = True
.Row = .Row - 1
bDoNotEdit = False
End If
If .Row < .Rows - 1 Then
bDoNotEdit = True
.Row = .Row + 1
bDoNotEdit = False
End If
End With
[你如何從Visual Basic 6.0遷移龐大的應用VB.NET?](http://stackoverflow.com/questions/395/how-do-you-migrate-a-large-app - 從視覺鹼性-6-0至VB-淨) –