プロパティに値を割り当てようとしましたが、そのプロパティに対し Property Set プロシージャが定義されていません。以下に例を示します。
Dim myInt As Integer
Property Get MyProp As Integer
MyProp% = myInt%
End Property
MyProp% = 3 ' Illegal because there is no
' Property Set MyProp defined
値を割り当てるプロパティのための Property Set プロシージャを定義してください。