Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_vb thread: Ambiguos name detected:


Message #1 by "Desmond" <desmond_otoole@h...> on Thu, 29 Mar 2001 14:23:33
Sorry Just seen what you did. Need a holiday. Thanks Again.
-----


> Here is your problem ( i think although i've not had time to test)
> > 
> > ----------------------- CVisit Class -------------------------
> > Option Explicit
> > 
> > Implements cIUtility
> > 
> > Private m_strSiteName As String
> > Private m_strMailDomain As String
> > Private m_strDbString As String
> > Private m_db As cDatabase
> > 
> > Private Property Get cIUtility() As cVisit
> >     Set cIUtility = Me
> > End Property
> > 
> 
> You are implementing the cIUtility class AND trying to create a 
cIUtility 
> property.
> I think what this should read like is:
> 
> Private Property Get cIUtility_Visit() As cVisit
>      Set cIUtility = Me
> End Property
> 
> i.e. This is defining the implementation of the visit property for the 
> cIUtility interface
> 
> Hope this helps
> Ian

  Return to Index