View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
vivmaha vivmaha is offline
external usenet poster
 
Posts: 42
Default Error 424 : Object required

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?