P009 PROPERTY SET が定義されていません: <プロパティ名>

プロパティに値を割り当てようとしましたが、そのプロパティに対し 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 プロシージャを定義してください。