Hey... It works alright now... Now it just need to get it working in another form/module besides the Class....
I have located my problem... It seems I have skipped something.. but I was possitivly sure that I tried this, but ohh well it works now...
..
I understood what you ment by identified, so I tried using like this in the initialize...
code:
Msgbox oMessenger.MyFriendlyName
and it worked... so I tried adding this to the declarition
code:
Public objMessenger
everytime I tried before I always had an As arguement behind...
And then in initilize I just use
code:
Set objMessenger = oMessenger
And it works perfectly.... And you don't need to have the reference to the Messenger API... but without this reference you won't be able to see the different calls and commands you can do, so I have this reference on as long as i'm programming, and then just remove it later on...
...
But why won't it work in my from in the Project?.. the objMessenger is set to Public..
Do I need to make them private and then in the from call something like this
code:
Set objMessenger = New Sample.oMessenger
Or something?
Then to the other question?... the contact list problem?... Can anybody confirm this problem?.. just so I know it isn't only at my side...
... And could anybody give an alternative?...
Thanks for your help!!!
...