Phone Dialer

Anyone know of a phone dialer to dial phone numbers from the Notes address book using the computer modem?

Thanks

B.

Subject: Phone Dialer

Your querry is not very clear. from where you are trying to dial and what exactly you are trying to do and why can’t you use windows xp inbuild dialer

Subject: RE: Phone Dialer

I want to dial directly from the corporate address book

Subject: Phone Dialer

Using the TAPI driver for the modem and adding a button or similar you can use the Windows Phone Dialer

Eg.

In Button Declarations

Declare Sub tapiRequestMakeCall Lib “TAPI32” (Byval lpszDestAddress$,Byval lpszAppName$, Byval lpszCalledParty$, Byval lpszComment$)

On Click

Dim doc As NotesDocument

Dim strPhoneNumber As String

Dim ws As New NotesUIWorkspace

Dim uidoc As Notesuidocument

Set uidoc =ws.CurrentDocument

Set doc = uidoc.Document

strPhoneNumber = doc.OfficePhoneNumber(0)

Call tapiRequestMakeCall(strPhoneNumber,“”,“”,“”)