国が既に Datagrid に表示されている場合、ユーザーが国をデータベースに追加できないようにしたいと考えています。
Datagrid には、フォーム読み込みイベントで国が事前に読み込まれます。
私は次のコード (以下) を持っていますが、添字が範囲外であり、負にすることはできないというエラーが表示されます。
Dim appear As Integer
Dim colcount As Integer
Dim rowcount As Integer
colcount = all_countries.ColumnCount
rowcount = all_countries.RowCount
For i = 0 To rowcount
For j = 0 To colcount
If (new_country.Text = all_countries.Item(colcount, rowcount).Value) Then
MsgBox("Country Exists", 0)
appear = 1
End If
Next
Next