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 gkittelson 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. santaslittlehelper

    how do i get records into an array

    If you want to iterate through a table using DAO you must open the data source then loop through the fields eg dim db as dao.database dim rs as dao.recordset set db = currentdb set rs = db.openrecordset("[Enter either a sql statement or the table name for all fields]") with...
  2. santaslittlehelper

    Compacting

    Go here http://www.mvps.org/access/ sub heading modules there is a vb5 compacter addin which will allow for a database to be compacted in on itself.
  3. santaslittlehelper

    Compact database

    Go here http://www.mvps.org/access/ sub heading modules there is a vb5 compacter addin which will allow for a database to be compacted in on itself. You are unable to normally compact a database on itself unless the tools/database utilities/compact database selection
  4. santaslittlehelper

    AUTOMATIC ENTER TODAYS DATE INTO A FIELD

    set the default value of the field on your table to date()<br>whenever a new record is created this date will be updated to the current date or set a text box to the same default and bind it to your table date field(You may want to lock the field in the properties to stop changes)
  5. santaslittlehelper

    Importing SQL tables through ODBC

    The code below imports a table and renames the table where highlighted with ***** this should fix your naming problem<br>&nbsp;<br>Private Sub DownloadCup3_Click()<br>&nbsp;&nbsp;&nbsp;&nbsp;Dim DB As Database<br>&nbsp;&nbsp;&nbsp;&nbsp;Dim RS As Recordset<br>&nbsp;&nbsp;&nbsp;&nbsp;Dim TD As...

Part and Inventory Search

Back
Top