V
vivmaha
I have a class module called "Node" which has a method with the following
heading: Public Sub ini()
From another module, "module2", I have the following code:
Dim root As Node
Set root = New Node
root.ini
When I try to run this, i get "Runtime error 424: Object required".
What am I doing wrong?
heading: Public Sub ini()
From another module, "module2", I have the following code:
Dim root As Node
Set root = New Node
root.ini
When I try to run this, i get "Runtime error 424: Object required".
What am I doing wrong?