Search results

  1. C

    Pictures/attachments from access to word

    I can only find how to insert through a file path. Is there a way to do it when the picture is an attachment in a field in access?
  2. C

    Pictures/attachments from access to word

    Is there a way to get attachments (pictures) from an access table to a word document e.g. using the bookmark method?
  3. C

    Export data from select query to word

    Thanks! It was running in the background. It still won't save though. Any idea why? Code is: wDoc.SaveAs2 "C:\Users\cas\Desktop\" & rs!Navn & "_PD.docx"
  4. C

    Export data from select query to word

    Tried to step through it now. It hangs on the opening of the word file as it says it's already in use by another user (me), although it is not. Any solutions for this?
  5. C

    Export data from select query to word

    Yes it's just a placeholder. The real path is in my code
  6. C

    Export data from select query to word

    I'm trying to run a code for extracting info from a few data fields from a select query and put it into bookmarked places in a word fil. Why doesn't this code work? It runs forever. Please help! Public Sub Export() Dim wApp As Word.Application Dim wDoc As Word.Document Dim rs...
Top Bottom