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