Try using a fully qualified namespace where you reference a ProfileCommom type. The compiler is finding more than one ProfileCommon type and that is the reason for the error.
Protected ReadOnly Property Profile() As
MyCompany.MyProject.MyClasses.ProfileCommon
James Steele
Participant
875 Points
173 Posts
Re: BC30554: 'ProfileCommon' is ambiguous - - PLEASE HELP
Apr 30, 2006 01:54 PM|LINK
Try using a fully qualified namespace where you reference a ProfileCommom type. The compiler is finding more than one ProfileCommon type and that is the reason for the error.
Protected ReadOnly Property Profile() As MyCompany.MyProject.MyClasses.ProfileCommon
You get the idea. That should help.
James Steele