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!

Search results for query: *

  • Users: sdillard
  • Content: Threads
  • Order by date
  1. sdillard

    Getting Class Not Registered error

    I use Access 2000. I recently moved my databases to a new PC running Win XP from my old one running Win 2000. Win I try to run my VBA modules on the new PC, I get a "Class Not Registered" error on the following step: rs.Open "[Table_Agent]", CurrentProject.Connection...
  2. sdillard

    File sharing lock count exceeded

    I am using Access 2000 with a single user database under Win 2000. I have a VB module that performs updates on several tables. On one particular table, I am getting the following error: "File sharing lock count exceeded. Increase MaxLocksPerFile registry entry." How do I increase...
  3. sdillard

    Problem with dates and group by

    I am working on an application in which I link to data from a MS SQL database in order to create an extract of the data on my PC. The data I am pulling down is collected in different time zones so I need to recalculate the date time to make sure they are all in sync. However, after I...
  4. sdillard

    Trouble creating object in multithreaded app

    I am attempting to write a multi-threaded app. When I try to create an instance, I am getting an error. My question is, can the appname.objecttype portion of the CreateObject statement be anything I want them to be? Thanks
  5. sdillard

    Running a shell program

    I am trying to start another application as a shell app within my VB application. Is there a way I can temporarily stop my VB application until the shell completes execution? It seems to compete with my VB app for CPU resources and therefore runs very slow and unpredictably. Thanks
  6. sdillard

    Looking for Remote Control application

    I am looking for a remote control application to that will work on NT and 2000 platforms. The application needs to have a VB SDK so that I can start and stop remote control sessions via my application. NetOP and pcAnywhere both have SDKs but they don't have the remote control functionality...
  7. sdillard

    Defining a function

    I am trying to incorporate a commercial application (PC Anywhere from Symantec) into a VB6 application. Symantec provides an OLE automation guide that supposedly allow a developer to do this. However, I am relatively inexperienced. In the guide, they describe and provide examples for using...
  8. sdillard

    Sound Recorder question

    Is there an OCX for the Microsoft Sound Recorder? I would like to incorporate it in my application but to initiate recording, you have to mouse clikc on a button. There aren't any menu commands to start and stop recording so I don't think I can use shell commands. Any ideas or suggestions...
  9. sdillard

    What is the Microsoft Telephony component?

    In my install of VB6 (sp5) there is a component called Microsoft Telephony (xtel.oca). Does anyone know what this is? Is there any documentation on it? Thanks
  10. sdillard

    TAPI reference

    I am looking for a good reference for TAPI. Any recommendations? Thanks
  11. sdillard

    Best way to wait?

    My app is supposed to start tasks based on a schedule which can be irregular. Right now, it waits by running a Do loop until the start time is >= to the system time. It is possible that it could sit in this loop for hours. Is this a huge resource drain? Is there a better way to do this?
  12. sdillard

    How do I interrupt an running application?

    My once my application starts, is there a way to kill it no matter what it is doing via a button? I put a Cancel button on it that sets a CancelFlag and my app is processing while CancelFlag is false, but nothing happens when I press it.
  13. sdillard

    TAPI Resources

    I want to use TAPI for a simple application that will dial a voice call. Can anyone point me to some sample code? Is the Microsoft Telephony component I see in the components list in VB6 TAPI or something else? Thanks
  14. sdillard

    Determining the ProgID

    I am trying to use an OCX provided by a commercial application. In their documentation they don't say what the progid is. Is there a way to find out what it is on my system? I want to use it in the "Set XXXX = CreateObject("progid") statement. I have put in a support request...
  15. sdillard

    Advice on TAPI vs AT commands

    I am writing a simple application that will dial a number using a modem and then after a period of time, automatically hang up. Am I better off using TAPI or AT commands in my VB app?
  16. sdillard

    VB App and PcAnywhere OLE automation

    I am trying to write a VB app that starts are remote PC anywhere session using Symantec's commands as described in their documentation. However, I am running into a problem and Symantec does not provide support for the OLE interface. In the documentation, they describe objects and methods...
  17. sdillard

    Using AT commands from a VB app

    I am writing a VB app that dials a call using a modem and sends the sounds (dial tones, ringing, voice, etc.) to a speaker. However, when I dial from by app, the sound is very distorted. I think it has something to do with the AT commands I am sending to the modem because when I dial...
  18. sdillard

    Modem sound distorted

    I have a Creative Labs Modem Blaster modem and I am running Windows 2000. I am trying to send modem sound to a speaker from my VB app I am writing. However, the sound I am getting is very distorted. I think it has something to do with the AT commands I am sending because when I dial manually...

Part and Inventory Search

Back
Top