Dial Numbers? 
Author Message
 Dial Numbers?

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.
DA



Sun, 16 Jan 2000 03:00:00 GMT  
 Dial Numbers?



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



Mon, 17 Jan 2000 03:00:00 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. how can i dial a telephone number using vb.net

2. dial a number..newbie

3. How can I dial a phone number?

4. I want to dial a list of numbers from a list

5. find out dial-up number!

6. Ques: How to Retrieve Dial-Up Networking (Usernames, Passwords, Phone Numbers)

7. How to dial a phone number with VB5

8. help! how to dial a number in VB4

9. COMM Control...can't dial a number

10. Automatically dial a number set up in DUN

11. How to Dial a phone number?

12. How to dial the phone number with VB5

 

 
Powered by phpBB® Forum Software