1. Your question is not unusual. Ones I saw an advertice from a database product (not access) where this was a standard feature.
2. I posted a time ago the same question in a news group. However up to now I failed to implement this. Here is a sample code I received.
If you succeeded to call a phone number from access it would please me to, let me know if possible.
Private Sub cmdCall_Click()
On Error GoTo Err_cmdCall_Click
Dim strDialStr As String
Dim ctlPrevCtl As Control
Const ERR_OBJNOTEXIST = 2467
Const ERR_OBJNOTSET = 91
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Set ctlPrevCtl = Screen.PreviousControl
If TypeOf ctlPrevCtl Is TextBox Then
strDialStr = Me.Telefoonnummer
ElseIf TypeOf ctlPrevCtl Is ListBox Then
strDialStr = Me.Telefoonnummer
ElseIf TypeOf ctlPrevCtl Is ComboBox Then
strDialStr = Me.Telefoonnummer
End If
Application.Run "utility.wlib_AutoDial", strDialStr
Exit_cmdCall_Click:
Exit Sub
Err_cmdCall_Click:
If (Err = ERR_OBJNOTEXIST) Or (Err = ERR_OBJNOTSET) Then
Resume Next
End If
MsgBox Err.Description
Resume Exit_cmdCall_Click
End Sub
ring ring regards, pat.