I'm using user defined type to list few variables. One of the UDTs is not recognized!!! Pseudo code is given below. When I try to use udtxxxyyy in sub / function, it is not recognized. These are declared in general declarations section, along with other types. While other types are recognized, this one is not. Strange 
. Is there any reason under which types will be unrecognized? Or, am I missing anything?
In the module code below, when I right click on udtxxxyyy, I get the error message 'Identifier under cursor is not recognized'. It is also evident from the fact that intellisense is not working too.
In the module code below, when I right click on udtxxxyyy, I get the error message 'Identifier under cursor is not recognized'. It is also evident from the fact that intellisense is not working too.
Code:
'General Declarations section
Private Type xxxyyy
strAll As String
End Type
Dim udtxxxyyy As xxxyyy
'In the Module
Private Sub AssignValues()
udtxxxyyy.strAll="All"
End Sub