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 SkipVought 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. dante1963

    Removing doubles from a table

    Another way, if the records are entirely identical, is to use a simple SQL command: select distinct * into (new table name) from (old table name); Then, simply delete the old table and rename the new one.
  2. dante1963

    Making reports that stick

    You can also export it to snapshot format. (.SNP), this will save all of the graphics and formatting. However, the user may need to download the free viewer from Microsoft to open it.
  3. dante1963

    Simple Textbox color change question

    Thanks, again for the help, Frank!
  4. dante1963

    A Living Hell

    Is that field a decimal format? If so, Access 97 won't recognize it. Change it to double or long.
  5. dante1963

    Simple Textbox color change question

    Thanks! Using your code, I was able to see what I was doing wrong. I've made the changes and it works fine. If you have time, could you take one more look my code? In the following code, I know that all those If statements aren't necessary and that I should just be able to do it in a loop of...
  6. dante1963

    Simple Textbox color change question

    Thanks for replying! The control to be changed, the textbox on the report (or one of them, anyway) is 1_year. What I was trying (and failing :) ) to do was to compare the value of 1_year on the report to the date range specified by the sdate and edate fields in the table tbldaterange. The...
  7. dante1963

    Simple Textbox color change question

    I have two tables in my Access 2K db: tblData, and tblDateRange. TblData's colums are made up of fname and lname columns, and then a series of dates. My query pulls all of the rows from the tblData where any of the date columns fall between the two dates listed in the tblDateRange table...

Part and Inventory Search

Back
Top