The following code will allow a developer to programmatically
dial a phone number.
'We need the following API declaration first...
Declare Function DialAnyPhoneNumber Lib "tapi32.dll" Alias "tapiRequestMakeCall" ( _
ByVal strPhoneNumber As String, _
ByVal strArg1 As String, _
ByVal strArg2 As String, _
ByVal strArg3 As String) As Long
Sub PlacePhoneCall(strTelephoneNumberToDial As String)