Hi
how do i not only late bind skype SKYPE4COMLib driver but also check if the user has skype installed and don't do anything if they dont
the below gives an error on the 2nd line
"ActiveX componenet can't create object"
the point is that i don't want to reference this library just in case the user doesn't have skype so that they don't get an error on opening the db
and second, if they click on the skype field in the form - again, nothing happens if they don't have skype installed
and if they do - it will call the number or username in the skype field in the form
thank you
how do i not only late bind skype SKYPE4COMLib driver but also check if the user has skype installed and don't do anything if they dont
the below gives an error on the 2nd line
"ActiveX componenet can't create object"
Code:
Dim sky As Object
Set sky = CreateObject("SKYPE4COMLib.skype")
the point is that i don't want to reference this library just in case the user doesn't have skype so that they don't get an error on opening the db
and second, if they click on the skype field in the form - again, nothing happens if they don't have skype installed
and if they do - it will call the number or username in the skype field in the form
thank you