how to program a telephone dialing

G

Gina

Hi all.

in my customer form I store 3 different telephone numbers .... I wonder how
I could use this information to do a dial on a button click I(maybe next to
the number text box ! ? ! ?

I have no knowledge at all of how to send the number information to the
phone .... (what would I need to call - which object)
I have knowledge in vba but do not know how to start this.

maybe someone can point me into the right direction.

thanks in advance
Gina
 
F

fredg

Hi all.

in my customer form I store 3 different telephone numbers .... I wonder how
I could use this information to do a dial on a button click I(maybe next to
the number text box ! ? ! ?

I have no knowledge at all of how to send the number information to the
phone .... (what would I need to call - which object)
I have knowledge in vba but do not know how to start this.

maybe someone can point me into the right direction.

thanks in advance
Gina

1) You can add the Phone Tool Button to your tool bar.
It's located in the Records Category commands section when you
Customize the tool bar.
Select the Phone field then click on the tool button.

or..
2) You can add a Command button to your form. One of the Wizard
options in the Miscellaneous list is the Phone dialer.
Select the Phone field then click on the command button.

or..
3) Paste this code into the Phone Field's Double-click event.

Dim strDialOut As String

If Not IsNull([PhoneField]) Then
strDialOut = [PhoneField]
Application.Run "utility.wlib_AutoDial", strDialOut
End If

Double-click on the field.
If the field does not have a phone number, the AutoDial dialog will
not open.
 
G

Gina

Hi fredg ....

hey ... that's exactly what I was looking for .... just saw it now !!!
many thanks,
Gina
fredg said:
Hi all.

in my customer form I store 3 different telephone numbers .... I wonder how
I could use this information to do a dial on a button click I(maybe next to
the number text box ! ? ! ?

I have no knowledge at all of how to send the number information to the
phone .... (what would I need to call - which object)
I have knowledge in vba but do not know how to start this.

maybe someone can point me into the right direction.

thanks in advance
Gina

1) You can add the Phone Tool Button to your tool bar.
It's located in the Records Category commands section when you
Customize the tool bar.
Select the Phone field then click on the tool button.

or..
2) You can add a Command button to your form. One of the Wizard
options in the Miscellaneous list is the Phone dialer.
Select the Phone field then click on the command button.

or..
3) Paste this code into the Phone Field's Double-click event.

Dim strDialOut As String

If Not IsNull([PhoneField]) Then
strDialOut = [PhoneField]
Application.Run "utility.wlib_AutoDial", strDialOut
End If

Double-click on the field.
If the field does not have a phone number, the AutoDial dialog will
not open.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top