Here is my VBA code in MS Access 2003
CODE
Dim aSkype As Skype
Set aSkype = New SKYPE4COMLib.Skype
Dim oChat As Chat
Dim skUser As SKYPE4COMLib.User
Set skUser = aSkype.User("MyFriendName")
Set oChat = aSkype.CreateChatWith(skUser.Handle)
oChat.OpenWindow
oChat.SendMessage "hello again"
Set aSkype = New SKYPE4COMLib.Skype
Dim oChat As Chat
Dim skUser As SKYPE4COMLib.User
Set skUser = aSkype.User("MyFriendName")
Set oChat = aSkype.CreateChatWith(skUser.Handle)
oChat.OpenWindow
oChat.SendMessage "hello again"
The problem is that the message gets sent (which I don't need, I put it in for testing only) but the window will not open.
All I really want is to open a chat window with that fellow.
Please advise anyone. Thanks.
YisMan
P.S. My PlaceCall procedure works flawlessly.