Letプロパティを次のように定義しています。
Public Property Let Set_ChanArray_Enabled1(i As Integer, j As Integer, choice As Boolean)
ChanArray(i, j).Enabled1 = choice
End Property
同じオブジェクトモジュールで定義されたサブで、次のことを試みます。
For j = 4 To 44
Me.Set_ChanArray_Enabled1(j, 1) = True
Me.Set_ChanArray_Enabled1(j, 3) = True
Next j
しかし、VBEは、渡されたjを指すByRef引数の不一致を私に与えます
Me.Set_ChanArray_Enabled1(j, 1) = True
jとメソッドに渡されるパラメーターの両方を整数として定義したので、何が問題なのかわかりません。