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. metallicsilver

    Add unmatched record / edit matched record

    Set MySet = myDb.OpenRecordset("UnmatchedDocuments", dbOpenTable) The problem is that this line didn't seem to grab the UnmatchedDocument Table from my database so MySet return a null value. As a result, all the rest of the code is wrong. Thanks.
  2. metallicsilver

    Add unmatched record / edit matched record

    Function UpdateUnmatched(WordDoc) Dim RecordNo As Long Dim myDb As DAO.Database Dim MySet As DAO.Recordset Set myDb = CurrentDb() Set MySet = myDb.OpenRecordset("UnmatchedDocuments", dbOpenTable) MySet.Index = "WordDocFile" MySet.Seek "=", WordDoc.Value If MySet.NoMatch Then MySet.AddNew...

Part and Inventory Search

Back
Top