Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

error communicating with the ole server or activex control

Status
Not open for further replies.

pfunk

Technical User
May 7, 2007
37
0
0
GB
the expression on click you entered as the event property setting produced the following error while wcs collections was communicating with the ole server or activex control


Private Sub DIAL_HOME_Click()
On Error GoTo Err_DIAL_HOME_Click

Dim stAppName As String

stAppName = "C:\Program Files\CounterPath\X-Lite 4.exe -dial=Me!Home_Phone"
Call Shell(stAppName, 1)

Exit_DIAL_HOME_Click:
Exit Sub

Err_DIAL_HOME_Click:
MsgBox Err.Description
Resume Exit_DIAL_HOME_Click

End Sub
 
I'm not sure how the program works but I expect it won't understand "Me!Home_Phone". Minimally I would try:
Code:
stAppName = "C:\Program Files\CounterPath\X-Lite 4.exe -dial=" & Me!Home_Phone

Duane
Hook'D on Access
MS Access MVP
 
nah no dice dhookom my posts are never that easy. minimally did not work for me. any other suggestions
 
What does the documentation state about automating or command line?
I found this statement
FAQs for CounterPath Products said:
You cannot use X-Lite to make a call from another application such as a web browser or Microsoft Excel(R).

Duane
Hook'D on Access
MS Access MVP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top