Forum Discussion
FergO18
Feb 22, 2022Copper Contributor
VBA: Compiler error: Method or Data member not found
I am trying to implement a doubly linked list. I have two class modules, one for each node and one for the linked list. Node: Option Explicit
Private Value As Long
Private prevNode As Node
Pri...
- Feb 22, 2022I have found my own mistake. I had set the attributes of the nodes to be private, meaning that the test module couldn't access them. Changing those to be public from private has fixed my issue.
FergO18
Feb 22, 2022Copper Contributor
I have found my own mistake. I had set the attributes of the nodes to be private, meaning that the test module couldn't access them. Changing those to be public from private has fixed my issue.