Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by pbxdave

  1. pbxdave

    what AT command to send DMTF dial tone

    there are 2 ways to do what you are trying to do: 1 "atdt9,7778888,,,,1,22446688" and each ',' will cause the modem to pause. 2 use a different card.. like a dialogic card that will do call progress detection. the use of a comma in the dial string can yeld flaky results because of...
  2. pbxdave

    The horrors of Data Shaping

    Just wipped this in access: And this works. SELECT injections.injID, patients.patFname, patients.patLname, doctors.mdFname, doctors.mdLname, hhca.hhcaName FROM ((injections INNER JOIN patients ON injections.patID = patients.patID) INNER JOIN doctors ON injections.mdID = doctors.mdID) INNER...
  3. pbxdave

    The horrors of Data Shaping

    One more thing.. What database are you using? david
  4. pbxdave

    The horrors of Data Shaping

    There are a few ways to accomplish what you are after but here is where I would start: You will need 3 record sets. 1 for the doctor 2 for the HHCA 3 for the paitent Select Doctor_ID from doctors While not eof rs.doctors Select HHCA_ID from HHCA where Doctor_ID = rs.doctors!doctor_id...
  5. pbxdave

    Specify custom HTTP Referrer URL

    Hi You can always communicate with a web server programmatically. However you will need to understand what parameters it expects you to provide. Are you familiar with GET and POST? GET encodes form data in the url – www.moo.cow?count=2&spots=4 POST hides form data from view. We use a...
  6. pbxdave

    How do you create a set of records

    Hi I am curious as to why you don’t just do something like this: Select Field1,Field2,Field3 From Table1 Where date >= '12/22/2000' and other_stuff = 1 Order by order_number If you can get your SQL statement optomized you wouldn't need to have a query call a query. You could also build the...
  7. pbxdave

    VB 6.0 Database Access

    Hi We were looking for a better way to handel data access and came apon a cool product called SQLTools from Perfectsynch. http://perfectsync.com/DevelopmentTools.htm#SQLTOOLS It is super small and fast! We can discuss it more if you are interested. Thanks pbx dave
  8. pbxdave

    Controlled COS Via a PC

    Dialogic makes a card (d42/4jct) that emulates a 2616 phone. You could create a vb or c or vos program with a user interface that could 'press' a button on a 2616 and change the cos. Not simple but very cool.
  9. pbxdave

    Email without mail client

    We use Catalyst. Here is some marketing info: "The Catalyst Internet Mail control provides a simplified interface for composing, sending and retrieving e-mail messages. If you're a developer who needs to integrate e-mail functionality in your applications, the Internet Mail control...
  10. pbxdave

    still no IIS APPLICATION

    Hi Diane: I have been programming IIS web class apps for the last few years and I have decided to stop using web classes. Microsoft has lost interest in supporting them and they are a real pain to get working 100% all the time next comes .NET god help us!! This may not be the place for this...

Part and Inventory Search

Back
Top