Thales750
11-19-2009, 10:54 AM
Has anyone found a way to interface with the Magic Jack contacts?
|
View Full Version : Magic Jack Thales750 11-19-2009, 10:54 AM Has anyone found a way to interface with the Magic Jack contacts? ajetrumpet 11-19-2009, 11:15 AM Has anyone found a way to interface with the Magic Jack contacts? is it a coincidence that there is a magic jack advertisement on the page of this thread? lol Thales750 11-19-2009, 11:30 AM is it a coincidence that there is a magic jack advertisement on the page of this thread? lol Maybe it's the twilight zone, but yes coincidence. Thales750 11-23-2009, 04:59 PM Update: I had a conversation with their tech guys and I did a Google search; they currently do not support MS Access. However I created a prospecting app and it copies the phone number to the clipboard Private Sub Command181_Click() Dim stDocName As String DoCmd.SetWarnings False Me.Text191 = Now Me.Text182 = [frmContactPhoneNumberSubform].Form![ContactPhoneNumber] If IsNull(Me.Text182) Then MsgBox ("Please Select Contact") Exit Sub End If Me.Text182.SetFocus DoCmd.RunCommand acCmdCopy stDocName = "qryCallLogContactAppend" DoCmd.OpenQuery stDocName, acNormal, acEdit Me.frmCallLogSubform.Requery DoCmd.SetWarnings True End Sub It runs a query that creates a call log in my app. Then I can right click paste into the phone dialer. Not a perfect solution but good enough for now. Vassago 11-24-2009, 12:48 PM is it a coincidence that there is a magic jack advertisement on the page of this thread? lol Actually no. The advertisements appear based on words that appear in the thread, so it makes perfect sense. No coincidence, just smart adspace lol. |