Search results

  1. R

    VBA/Macro for loading a PDF

    Still having a problem with that. Same error message - failing to connect with OLE or Active X. How do I approach getting rid of all the brackets?
  2. R

    VBA/Macro for loading a PDF

    Hello, This is the code: Private Sub Command472_Click() Dim sFilePath As String sFilePath = "W:\Production Documents\1970\" & [Me.[Document Number]] & [Me.[Current Revision]] & [.pdf] \ "" Debug.Print sFilePath Application.FollowHyperlink sFilePath On VBA, it says there is no problems...
  3. R

    VBA/Macro for loading a PDF

    Thanks for your help - With that debug it has cleared the issue up. However, I am still having the same problem when I click on the button: "The expression On Click you entered as the event property setting produced the following error: A problem occurred while Microsoft Access was...
  4. R

    VBA/Macro for loading a PDF

    Firstly, apologies: I will delete the other one straight away. I've uploaded the error message I am receiving This is the code I have entered: .......................................................... Private Sub Command472_Click() Dim sFilePath As String sFilePath = "W:\\Production...
  5. R

    VBA/Macro for loading a PDF

    Hello all, I have 1900+ records, of where each record is represents a PDF Document in my folders. Each document in my folders is named in the same format "2014-001a" for example. This is the combination of two fields in my Access Database - Document Number and Current Revision. I am looking...
Back
Top Bottom