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 strongm 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. DseeDm

    newbee cannot get the correct value in string

    Hi Just curious... Where does the value 18 come from? Is it a value in the grid? - DCD
  2. DseeDm

    How to check if a File is Open

    Hello, Hopefully this is an easy one. :) I have a process that moves a file. Just need to check to see if the file is open before I move it. Any sugestions? Thanks - D
  3. DseeDm

    Using Code to Add Text

    Hello, Just a basic question, is there anyway to add text to a pdf document using code? I need to add repeating text to specific pages but I don't want to spend the time manually. Thanks DCD
  4. DseeDm

    Relationships

    Hello, Is there a way to add or modify relationships with code? Thanks for your help. - DCD
  5. DseeDm

    Check to see if table Exists

    Hello, I'm using Access97 and wondering whats the quickest way to determine if a table exists. I want to delete the table if it exists. Currently, I loop through Tabledefs and I delete the table if found. The more tables I have, the longer this takes... Any Ideas? Thanks DCD
  6. DseeDm

    Sendmail in VBA to Lotus Notes

    What's the best way to send to more than one recipient? Thanks!
  7. DseeDm

    Type mismatch problem

    Hello, Is the value being stored in date1 a date? If so, try replacing: Dim date1 As String With: Dim date1 As Date - DCD
  8. DseeDm

    Date() throws ADO error

    Hi, I believe you'll need to use something like: "where blabla = '" & format(Date(),"YYYY-MM-DD HH:NN:SS") & "'" you may need to tweak the date format a little. Good Luck - DCD
  9. DseeDm

    Multi Page to Single Pages...

    Ok found a solution... see: thread223-209794
  10. DseeDm

    How to refer to returned recordsets after executing SQL query

    Sounds like you want to open a recordset... What version of Access are you using?
  11. DseeDm

    Multi Page to Single Pages...

    Hi, Is there an easy way to take a 5000 pg pdf file and convert it to 5000 single page pdf files? I have acrobat 5... Thanks DCD
  12. DseeDm

    Lotus Notes Help...

    Hi, I've seen most of the posts regarding attaching and emailing using VBA code, and I've just started working with it and hope someone can answer a couple of questions... 1) I can email one person. I've tried creating a group to send an email to multiple people, but it doesn't appear to have...
  13. DseeDm

    Manipulate PDF files,,,

    Thanks, John This looks like it will be very helpful!!
  14. DseeDm

    Manipulate PDF files,,,

    Hi, Using Access 97 with Acrobat 4, I need to be able to split and merge pdf docs and I need to be able to use find text. Any ideas? Thanks DCD
  15. DseeDm

    How do I reference an object in a form?

    Maybe, I'm missing something.... Is rs a query? If so you'll need to move to the last record before rs.RecordCount will have a value other than 0.
  16. DseeDm

    Font Installed

    I figured it out!! Thanks
  17. DseeDm

    Font Installed

    Hi, Is there anyway in code to check to see if a font is installed and if it's not, then install it? Thanks DCD
  18. DseeDm

    Can I use Access Queries in Excel?

    Hi, Select File > Get External Data > Link tables
  19. DseeDm

    Can I use Access Queries in Excel?

    Hi You could try linking to the excel spreadsheet, like it's a table... Not sure if this will increase efficiency Good Luck -DCD
  20. DseeDm

    Format a query result

    Hi Try test: format([countofmalus]/[count]*100,"#.000") if you want to force 3 decimal places OR test: format([countofmalus]/[count]*100,"#.###") if you don't mind having 1, 2 or 3 decimal places Good Luck -DCD

Part and Inventory Search

Back
Top