A
Aidy
I'd like to set the properties outside of a class module. This is the
code in the class module
<snip>
Public Sub HostExample()
Set m_ttHost = teemtalk.CurrentSession.Host
m_ttHost.Send User
End Sub
Public Property Let User(sUser As String)
User = sUser
End Property
<snip>
But when I compile, I am told that this is an invalid use of
a property. What am I doing wrong?
Thanks
Aidy
code in the class module
<snip>
Public Sub HostExample()
Set m_ttHost = teemtalk.CurrentSession.Host
m_ttHost.Send User
End Sub
Public Property Let User(sUser As String)
User = sUser
End Property
<snip>
But when I compile, I am told that this is an invalid use of
a property. What am I doing wrong?
Thanks
Aidy