Hi,

I must be overlooking something really simple.

SITUATION
A form Application, but this is about the two added Class Modules: Class1.vb and Person.vb

Person.vb
--------------
VB Code:
  1. Public Class Person
  2.     Public Name As String
  3.     Public Age As Integer
  4. End Class



Class1.vb
-------------
VB Code:
  1. Public Class Class1
  2.     Dim person As New Person
  3.     person.Name = "Bob"        <---- Name doesn't show up in Intelisense and this gives a "Declaration expected" error.
  4.  
  5. End Class


PS
* They are in the same (root) namespace.
* I know the above Class design is *crappo*. It's just put together as a simple illustration of my headache, I mean problem. (#_#)