単純なプロパティ(pName)を持つ独自のクラス(ClassFoo)があり、常にエラーが発生するため、設定できませんでした...
Class Modules - ClassFoo
---
Public pName as String
Public Property Let Name(Value as String)
pName = Value
End Property
----
Somewhere else in the ModuleX
...
Dim Foo as ClassFoo
Foo.Name = "foo" <- throws error
Foo.pName = "foo" <- throws error
また
With Foo
.pName = "foo" <- throws error
End With
クラス 'Instancing' を 'Private' から 'PublicNotCreatable' に (行ったり来たり) 変更しましたが、それでも同じエラーが発生します ...
事前に返信いただきありがとうございます。
Cs