Quote:
> Is it possible to dial a list of phone numbers automatically. The Dialer
> included will dial one at a time. I need to dial 100 or more numbers in
> succession that are returned from a query.
If you can dial one, you can dial many. Simply put the call to the dialer
procedure in a loop, reading all the rows returned from the query. That
is:
Dim rst as REcordset
DIm db as Database
Set db = CurrentDb()
Set rst = db.OpenRecordset("YourQuery")
Do While Not rst.EOF
Call DialThisNumber(rst!YourFIeld)
' You may have to do something in here to cause the
' the code to wait until you're done with the call.
rst.MoveNext
Loop
-- Ken