Forum Discussion

FergO18's avatar
FergO18
Copper Contributor
Feb 22, 2022
Solved

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...
  • FergO18's avatar
    Feb 22, 2022
    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.

Resources