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 Chris Miller 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: *

  1. gudisdum

    Searching a PDF with VBA

    Hello, I am looking for an easy way to pull information from a PDF without third party software. I am setting up a macro in Word to verify version numbers on several documents. Some are in Word some are PDF. I need to call the adobe find function and then be able to flag if the find was...
  2. gudisdum

    Need Help querying by a variable date range

    Hello all I'm attempting to filter a table of machines and alarms to remove all the same alarms on a machine that occur within 2 minutes of each other. The basic table stucture is this. Machine Alarm Time 1 Door Open 1/1/2006 07:00:00 AM 1 Door Open...
  3. gudisdum

    SELECT * query returning as if SELECT TOP

    Actually that was my debug code to try and find out what it was pulling from the table. The movelast movefirst worked like a charm. Thanks much Doug
  4. gudisdum

    SELECT * query returning as if SELECT TOP

    I am calling a SELECT * using this code Dim db As Database Dim rs As Recordset Dim s As String Dim x As Integer Set db = CurrentDb s = "SELECT * FROM [WWW];" Set rs = db.OpenRecordset(s, dbOpenDynaset) x = rs.RecordCount MsgBox (x) There are over 200 entries in the table yet it only returns...
  5. gudisdum

    No fields in Table error?????

    Never mind, my permissions on the db where screwed up.
  6. gudisdum

    No fields in Table error?????

    I am attempting to create a report in CR 8.5 that pulls data from a MS Access 2000 database. When I create the link to the db it pulls up all the tables just fine; but when I attempt to add the table to the report I get the message "There are no fields in the table" I have also tried...
  7. gudisdum

    Searching by control type?

    We are working on a form where we need to do several functions with all the text boxes on it.(clear, enable, disable..etc) I have set a for each loop that cycles through the control tags, then performs the function. This seems to be a work around to me. Does anyone know of a way to "For...
  8. gudisdum

    Scheduled jobs hang up

    There is no noise coming from the tape drive. I have only seen it after it has been loading for 7 plus hours so it may have powered down by then; and the drivers are current. I had to update them to get BE9.0 to work at all.
  9. gudisdum

    my backup job isn't running properly

    ooops didn't look at the date. Submitting a new post now.
  10. gudisdum

    Scheduled jobs hang up

    I am running Backup Exec 9.0 for Windows Servers on a Windows 2000 Advanced Server platform. When a scheduled job runs it hangs at media loading until I cancel the job. If I use the same job and set it to "Run now" it works fine. Any Ideas Thanks for the help
  11. gudisdum

    my backup job isn't running properly

    I am having the same issue. It is only on scheduled jobs though. If I do a run now on the same job it works fine? Any ideas? Thanks
  12. gudisdum

    Losing my mind, treeviews are killing me

    I am coding the user interface for a database that tracks different types of personell issues. I was givin an outline that they want in a treeview. Kind of like this: I Unsafe Acts A. Errors 1. Skill Based a. No turn over This outline goes about 4 deep and has many roots. The...
  13. gudisdum

    Treeview search features

    I am attemping to use a treeview which builds at run time. I have been beating myself up for about a week trying to get it to work. Is there a way to search all of the nodes, including children? I have tried all of the recursive searches I can think of and they all only search the top level...

Part and Inventory Search

Back
Top