Link to home
Start Free TrialLog in
Avatar of bridgegael
bridgegael

asked on

Skype calling from Access 2010 Database (VBA) using Skype4Com

Hi

I'm using the following code to make a Skype Call from VBA in Access 2010

Dim skpSkype As SKYPE4COMLib.Skype
Dim calCall As SKYPE4COMLib.Call

Set skpSkype = New SKYPE4COMLib.Skype
Set calCall = skpSkype.PlaceCall(Phone_Number.Text)


I want to place another button on the screen which will end the call but am having a few problems getting it to work.  

I'd also like to hide the Skype window, can this be done?  I'd like my app to control making and killing calls without the user having to see Skype at all.
Avatar of Jeffrey Coachman
Jeffrey Coachman
Flag of United States of America image

Not sure but most functions like this have some sort of visibility command:

calCall.Visible=False

...perhaps...?
ASKER CERTIFIED SOLUTION
Avatar of danishani
danishani
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bridgegael
bridgegael

ASKER

Thanks thats exactly what I needed.