クラスかユーザー定義型の存在しないメンバが参照されました。以下に例を示します。
Type myType A As Integer End Type Dim X As myType X.nonVar% = 10 ' Illegal because nonVar% is not defined in myType
そのクラスか型内でメンバを定義するか、その参照を削除してください。