Search results

  1. J

    Display linked document in report without storing as OLE

    I have a db that has records with references to documents (primarily Visio, Word, and PowerPoint documents) stored on the external filesystem. I'm only storing the paths to these references - I'm not storing them as embedded or linked OLE fields. This works well on my form, where I can store...
  2. J

    Many-to-Many Relationship to same table

    Thanks George, that worked. To help the next person trying to solve a similar problem, here is the code I wrote to create the mirror record, as well as to delete the mirror when deleting the main record. Best, Jim Private Sub Form_AfterInsert() Dim curDB As Database Dim recSet As Recordset...
  3. J

    Many-to-Many Relationship to same table

    Thanks George, feels like we're on the right track. Is there a way to implement a trigger in Access (to follow the structure you are outlining)? Best, Jim
  4. J

    Many-to-Many Relationship to same table

    Thanks for your response. I think this is a bit different from a self join, in that there is a many-to-many relationship. One thing I think we have going for us here is that we really only need the one level of the relationship, but we need it in both directions (e.g., if a relationship is...
  5. J

    Print Multiple Reports Into Single PDF

    I've searched far and wide for a solution to what seems like a straightforward problem: I have 2 reports that must print separately (one is portrait, one landscape) that I want to generate and automatically combine into a single pdf (so the user doesn't need to do so manually). Recommendations...
  6. J

    Many-to-Many Relationship to same table

    I am working on a software requirements database and want to be able to relate requirements to one another, so that the reader can easily see what other requirements may duplicate or impact a given requirement. These requirements do not have a hierarchical relationship, I am trying to merely...
  7. J

    Table of Contents/Opening Report Multiple Times

    Thanks to all for the great content on this site - I've resolved a lot of issues by reviewing previous posts. I've searched this forum pretty thoroughly and couldn't find the answer to the following: I have a report that generates a document that replaces an older MS Word-based template...
Back
Top Bottom