als je bv. een standaard lijstje hebt waarin je variabele
gegevens moet in vullen....
(to reply to sender remove DITVERWIJDEREN from emailadress)
"Murat" <mu...@procare.nl> schreef in bericht
news:bf2201c2528e$879667d0$9ee62ecf@tkmsftngxa05...
Ik weet niet of dit de vraag is van Murat.
Maar ik ben wel benieuwd naar de oplossing, die jij
hiervoor hebt.
Frank Looman.
>-----Oorspronkelijk bericht-----
>.
>
' Get the phone number
CellContents = ActiveCell.Value
If CellContents = "" Then
MsgBox "Kies een cel met een telefoonnummer."
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 "%m"
' Application.SendKeys "{TAB}~", True
End Sub
Hopelijk hebben jullie er wat aan, want ik gebruik hem regelmatig
Piet
"Frank Looman" <loo...@telebyte.nld> schreef in bericht
news:9fee01c252ba$78d73680$2ae2...@phx.gbl...