vipulgos
Active Member
- Joined
- Aug 17, 2002
- Messages
- 335
- Office Version
- 2010
- Platform
- Windows
Dear all,
I am using undermentioned code derived from different posts
This code is giving me the Error as under:
"File Not Found"
How to get rid out of this?
I am using undermentioned code derived from different posts
Code:
Declare Function tapiRequestMakeCall Lib "tapi32.dll" _
(ByVal stNumber As String, ByVal stDummy1 As String, _
ByVal stDummy2 As String, ByVal stDummy3 As String) As Long
Sub phonedialer_click()
Dim lngStatus As Long
' Send the telephone number to the modem.
lngStatus = tapiRequestMakeCall(ActiveCell.Value, "", "", "")
If lngStatus < 0 Then
MsgBox "Failed to dial number " & Number, vbExclamation
End If
End Sub
"File Not Found"
How to get rid out of this?