Hi
say i have declare the following types

VB Code:
  1. Public Type objinner
  2.   Top As String
  3.   Bottom As String
  4. End Type
  5.  
  6. Public Type obj
  7.   Something As String
  8.   subobj As objinner
  9. End Type
  10.  
  11. Public Myobj As obj

now i m wrinting Myobj.subobj and then press the dot ".". Vb's intellisense feature is supposed to drop down the list box but it doesn't why? am i missing somthing?