I put this on a file
highlight Code:
  1. Namespace ias
  2.     Module robust
  3.         <Extension()>
  4.         Public Function getChildNode(ByVal node As mshtml.IHTMLDOMNode, ByVal child As Integer) As mshtml.IHTMLDOMNode
  5.             Return node.childNodes(child)
  6.         End Function
  7.  
  8.         Public hello As Double
  9.     End Module
  10.     Class SomeClass
  11.  
  12.     End Class
  13. End Namespace


I put this on another file
Code:
  1. Imports ias

Got error

Warning 1 Namespace or type specified in the Imports 'ias' doesn't contain any public member or cannot be found. Make sure the namespace or the type is defined and contains at least one public member. Make sure the imported element name doesn't use any aliases. \\work\c\business\fromwork\currentprojects\program\library\vb.net\angela.vb 5 9 googlepages


What the hell does that suppose to mean?