Closed Thread
Results 1 to 9 of 9

Is there a way to make Excel 2000 dial phone numbers?

Hybrid View

  1. #1
    TimeKeeper
    Guest

    Is there a way to make Excel 2000 dial phone numbers?



  2. #2
    Paul B
    Guest

    Re: Is there a way to make Excel 2000 dial phone numbers?

    TimeKeeper,

    Sub CellToDialer()
    'Here's some VBA code from John Walkenbach "Excel 2000 Power Programming
    With VBA" book.
    'It uses SendKeys to click the Dial button:

    ' Transfers active cell contents to Dialer
    ' And then dials the phone
    ' Get the phone number
    CellContents = ActiveCell.Value
    If CellContents = "" Then
    MsgBox "Select a cell that contains a phone number."
    Exit Sub
    End If
    ' Activate (or start) Dialer
    Appname = "Dialer"
    AppFile = "Dialer.exe"
    On Error Resume Next
    AppActivate (Appname)
    If Err <> 0 Then
    Err = 0
    TaskID = Shell(AppFile, 1)
    If Err <> 0 Then MsgBox "Can't start " & AppFile
    End If
    ' Transfer cell contents to Dialer
    Application.SendKeys "%n" & CellContents, True
    ' Click Dial button
    Application.SendKeys "%d"
    End Sub


    And if you are new to macros you may also what to have a look here on
    getting started with macros
    http://www.mvps.org/dmcritchie/excel/getstarted.htm


    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "TimeKeeper" <TimeKeeper@discussions.microsoft.com> wrote in message
    news:5DAC6075-D874-4F4E-8D32-91AC353E2089@microsoft.com...
    >




  3. #3
    TimeKeeper
    Guest

    Re: Is there a way to make Excel 2000 dial phone numbers?

    Thank you, this is helpful. One last question... Where is Dialer.exe? I
    searched my hard disks, but can't find it. Do I need to purchase it or is it
    freeware someplace? Sorry, that's two questions.

    "Paul B" wrote:

    > TimeKeeper,
    >
    > Sub CellToDialer()
    > 'Here's some VBA code from John Walkenbach "Excel 2000 Power Programming
    > With VBA" book.
    > 'It uses SendKeys to click the Dial button:
    >
    > ' Transfers active cell contents to Dialer
    > ' And then dials the phone
    > ' Get the phone number
    > CellContents = ActiveCell.Value
    > If CellContents = "" Then
    > MsgBox "Select a cell that contains a phone number."
    > Exit Sub
    > End If
    > ' Activate (or start) Dialer
    > Appname = "Dialer"
    > AppFile = "Dialer.exe"
    > On Error Resume Next
    > AppActivate (Appname)
    > If Err <> 0 Then
    > Err = 0
    > TaskID = Shell(AppFile, 1)
    > If Err <> 0 Then MsgBox "Can't start " & AppFile
    > End If
    > ' Transfer cell contents to Dialer
    > Application.SendKeys "%n" & CellContents, True
    > ' Click Dial button
    > Application.SendKeys "%d"
    > End Sub
    >
    >
    > And if you are new to macros you may also what to have a look here on
    > getting started with macros
    > http://www.mvps.org/dmcritchie/excel/getstarted.htm
    >
    >
    > --
    > Paul B
    > Always backup your data before trying something new
    > Please post any response to the newsgroups so others can benefit from it
    > Feedback on answers is always appreciated!
    > Using Excel 2002 & 2003
    >
    > "TimeKeeper" <TimeKeeper@discussions.microsoft.com> wrote in message
    > news:5DAC6075-D874-4F4E-8D32-91AC353E2089@microsoft.com...
    > >

    >
    >
    >


  4. #4
    Paul B
    Guest

    Re: Is there a way to make Excel 2000 dial phone numbers?

    TimeKeeper,

    What's the Dialer program?
    Dialer.exe is a program that ships as part of Windows. It allows a user to
    dial an outgoing voice call via his computer, if the modem supports both
    voice and data. The user enters a number to dial, or selects a number from
    the speed-dialer list, and then picks up on a handset when the call is
    answered.

    I am on a computer running windows 98 at this time, it is in C:\windows,
    have not used it in XP so I don't know if it is in it or not, you could most
    likely do a search on Google for it and find a copy, if not I can send you a
    copy from this computer. It's a small file only abut 68kb

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "TimeKeeper" <TimeKeeper@discussions.microsoft.com> wrote in message
    news:8E1CBE02-469A-4E78-86C1-D7BBC946F543@microsoft.com...
    > Thank you, this is helpful. One last question... Where is Dialer.exe? I
    > searched my hard disks, but can't find it. Do I need to purchase it or is

    it
    > freeware someplace? Sorry, that's two questions.
    >
    > "Paul B" wrote:
    >
    > > TimeKeeper,
    > >
    > > Sub CellToDialer()
    > > 'Here's some VBA code from John Walkenbach "Excel 2000 Power Programming
    > > With VBA" book.
    > > 'It uses SendKeys to click the Dial button:
    > >
    > > ' Transfers active cell contents to Dialer
    > > ' And then dials the phone
    > > ' Get the phone number
    > > CellContents = ActiveCell.Value
    > > If CellContents = "" Then
    > > MsgBox "Select a cell that contains a phone number."
    > > Exit Sub
    > > End If
    > > ' Activate (or start) Dialer
    > > Appname = "Dialer"
    > > AppFile = "Dialer.exe"
    > > On Error Resume Next
    > > AppActivate (Appname)
    > > If Err <> 0 Then
    > > Err = 0
    > > TaskID = Shell(AppFile, 1)
    > > If Err <> 0 Then MsgBox "Can't start " & AppFile
    > > End If
    > > ' Transfer cell contents to Dialer
    > > Application.SendKeys "%n" & CellContents, True
    > > ' Click Dial button
    > > Application.SendKeys "%d"
    > > End Sub
    > >
    > >
    > > And if you are new to macros you may also what to have a look here on
    > > getting started with macros
    > > http://www.mvps.org/dmcritchie/excel/getstarted.htm
    > >
    > >
    > > --
    > > Paul B
    > > Always backup your data before trying something new
    > > Please post any response to the newsgroups so others can benefit from it
    > > Feedback on answers is always appreciated!
    > > Using Excel 2002 & 2003
    > >
    > > "TimeKeeper" <TimeKeeper@discussions.microsoft.com> wrote in message
    > > news:5DAC6075-D874-4F4E-8D32-91AC353E2089@microsoft.com...
    > > >

    > >
    > >
    > >




  5. #5
    TimeKeeper
    Guest

    Re: Is there a way to make Excel 2000 dial phone numbers?

    Yes, that would be great if you would send me a copy of dialer.exe and any
    type of dialer.doc file you might also have available. I am running XP and
    dialer.exe did not come with it.

    Thank you very much!



    "Paul B" wrote:

    > TimeKeeper,
    >
    > What's the Dialer program?
    > Dialer.exe is a program that ships as part of Windows. It allows a user to
    > dial an outgoing voice call via his computer, if the modem supports both
    > voice and data. The user enters a number to dial, or selects a number from
    > the speed-dialer list, and then picks up on a handset when the call is
    > answered.
    >
    > I am on a computer running windows 98 at this time, it is in C:\windows,
    > have not used it in XP so I don't know if it is in it or not, you could most
    > likely do a search on Google for it and find a copy, if not I can send you a
    > copy from this computer. It's a small file only abut 68kb
    >
    > --
    > Paul B
    > Always backup your data before trying something new
    > Please post any response to the newsgroups so others can benefit from it
    > Feedback on answers is always appreciated!
    > Using Excel 2002 & 2003
    >
    > "TimeKeeper" <TimeKeeper@discussions.microsoft.com> wrote in message
    > news:8E1CBE02-469A-4E78-86C1-D7BBC946F543@microsoft.com...
    > > Thank you, this is helpful. One last question... Where is Dialer.exe? I
    > > searched my hard disks, but can't find it. Do I need to purchase it or is

    > it
    > > freeware someplace? Sorry, that's two questions.
    > >
    > > "Paul B" wrote:
    > >
    > > > TimeKeeper,
    > > >
    > > > Sub CellToDialer()
    > > > 'Here's some VBA code from John Walkenbach "Excel 2000 Power Programming
    > > > With VBA" book.
    > > > 'It uses SendKeys to click the Dial button:
    > > >
    > > > ' Transfers active cell contents to Dialer
    > > > ' And then dials the phone
    > > > ' Get the phone number
    > > > CellContents = ActiveCell.Value
    > > > If CellContents = "" Then
    > > > MsgBox "Select a cell that contains a phone number."
    > > > Exit Sub
    > > > End If
    > > > ' Activate (or start) Dialer
    > > > Appname = "Dialer"
    > > > AppFile = "Dialer.exe"
    > > > On Error Resume Next
    > > > AppActivate (Appname)
    > > > If Err <> 0 Then
    > > > Err = 0
    > > > TaskID = Shell(AppFile, 1)
    > > > If Err <> 0 Then MsgBox "Can't start " & AppFile
    > > > End If
    > > > ' Transfer cell contents to Dialer
    > > > Application.SendKeys "%n" & CellContents, True
    > > > ' Click Dial button
    > > > Application.SendKeys "%d"
    > > > End Sub
    > > >
    > > >
    > > > And if you are new to macros you may also what to have a look here on
    > > > getting started with macros
    > > > http://www.mvps.org/dmcritchie/excel/getstarted.htm
    > > >
    > > >
    > > > --
    > > > Paul B
    > > > Always backup your data before trying something new
    > > > Please post any response to the newsgroups so others can benefit from it
    > > > Feedback on answers is always appreciated!
    > > > Using Excel 2002 & 2003
    > > >
    > > > "TimeKeeper" <TimeKeeper@discussions.microsoft.com> wrote in message
    > > > news:5DAC6075-D874-4F4E-8D32-91AC353E2089@microsoft.com...
    > > > >
    > > >
    > > >
    > > >

    >
    >
    >


  6. #6
    Paul B
    Guest

    Re: Is there a way to make Excel 2000 dial phone numbers?

    I would need your e-mail address to do that.

    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "TimeKeeper" <TimeKeeper@discussions.microsoft.com> wrote in message
    news:06A3A25B-891A-4C04-9346-C7C1142E6C42@microsoft.com...
    > Yes, that would be great if you would send me a copy of dialer.exe and any
    > type of dialer.doc file you might also have available. I am running XP

    and
    > dialer.exe did not come with it.
    >
    > Thank you very much!
    >
    >
    >
    > "Paul B" wrote:
    >
    > > TimeKeeper,
    > >
    > > What's the Dialer program?
    > > Dialer.exe is a program that ships as part of Windows. It allows a user

    to
    > > dial an outgoing voice call via his computer, if the modem supports both
    > > voice and data. The user enters a number to dial, or selects a number

    from
    > > the speed-dialer list, and then picks up on a handset when the call is
    > > answered.
    > >
    > > I am on a computer running windows 98 at this time, it is in C:\windows,
    > > have not used it in XP so I don't know if it is in it or not, you could

    most
    > > likely do a search on Google for it and find a copy, if not I can send

    you a
    > > copy from this computer. It's a small file only abut 68kb
    > >
    > > --
    > > Paul B
    > > Always backup your data before trying something new
    > > Please post any response to the newsgroups so others can benefit from it
    > > Feedback on answers is always appreciated!
    > > Using Excel 2002 & 2003
    > >
    > > "TimeKeeper" <TimeKeeper@discussions.microsoft.com> wrote in message
    > > news:8E1CBE02-469A-4E78-86C1-D7BBC946F543@microsoft.com...
    > > > Thank you, this is helpful. One last question... Where is Dialer.exe?

    I
    > > > searched my hard disks, but can't find it. Do I need to purchase it

    or is
    > > it
    > > > freeware someplace? Sorry, that's two questions.
    > > >
    > > > "Paul B" wrote:
    > > >
    > > > > TimeKeeper,
    > > > >
    > > > > Sub CellToDialer()
    > > > > 'Here's some VBA code from John Walkenbach "Excel 2000 Power

    Programming
    > > > > With VBA" book.
    > > > > 'It uses SendKeys to click the Dial button:
    > > > >
    > > > > ' Transfers active cell contents to Dialer
    > > > > ' And then dials the phone
    > > > > ' Get the phone number
    > > > > CellContents = ActiveCell.Value
    > > > > If CellContents = "" Then
    > > > > MsgBox "Select a cell that contains a phone number."
    > > > > Exit Sub
    > > > > End If
    > > > > ' Activate (or start) Dialer
    > > > > Appname = "Dialer"
    > > > > AppFile = "Dialer.exe"
    > > > > On Error Resume Next
    > > > > AppActivate (Appname)
    > > > > If Err <> 0 Then
    > > > > Err = 0
    > > > > TaskID = Shell(AppFile, 1)
    > > > > If Err <> 0 Then MsgBox "Can't start " & AppFile
    > > > > End If
    > > > > ' Transfer cell contents to Dialer
    > > > > Application.SendKeys "%n" & CellContents, True
    > > > > ' Click Dial button
    > > > > Application.SendKeys "%d"
    > > > > End Sub
    > > > >
    > > > >
    > > > > And if you are new to macros you may also what to have a look here

    on
    > > > > getting started with macros
    > > > > http://www.mvps.org/dmcritchie/excel/getstarted.htm
    > > > >
    > > > >
    > > > > --
    > > > > Paul B
    > > > > Always backup your data before trying something new
    > > > > Please post any response to the newsgroups so others can benefit

    from it
    > > > > Feedback on answers is always appreciated!
    > > > > Using Excel 2002 & 2003
    > > > >
    > > > > "TimeKeeper" <TimeKeeper@discussions.microsoft.com> wrote in message
    > > > > news:5DAC6075-D874-4F4E-8D32-91AC353E2089@microsoft.com...
    > > > > >
    > > > >
    > > > >
    > > > >

    > >
    > >
    > >




  7. #7
    Forum Contributor
    Join Date
    11-20-2005
    Posts
    256
    Quote Originally Posted by TimeKeeper
    Yes, that would be great if you would send me a copy of dialer.exe and any
    type of dialer.doc file you might also have available. I am running XP and
    dialer.exe did not come with it.

    Thank you very much!
    Hi TimeKeeper,

    I have XP Home & XP Pro, "dialer.exe" is in this path on both.

    C:\Program Files\Windows NT\dialer.exe
    Thx
    Dave
    "The game is afoot Watson"

  8. #8
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Is there a way to make Excel 2000 dial phone numbers?

    And this is an answer to the question?
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1