Search results

  1. T

    FileCopy change folder destination

    SimoneRene, It depends if you want to change the target location each time you are running the macro or for each different file (in case you changed AllowMultiSelect =True) For when you are running the macro, I usually do as below, which allows me to avoid modifying too much the code of the...
  2. T

    Save a copy of a hyperlinked pdf to a different file location

    How do you get the hyperlink placed? You can usually get from the hyperlink the address of the file through the hyperlink property .Target and then use a Filecopy Hyperlink.target Destination It depends practically of the type of form (still in Access or exported). Regards Tom
  3. T

    Detect the orientation of a PDF file

    Jan, You can just test for the dimensions of the page with GetSize 'Set PDFPage0 = pdDoc.AcquirePage(0) 'Set PDFPage = pdDoc.AcquirePage(0).GetSize() 'If PDFPage.x > PDFPage.y Then PDFPage0.SetRotate (90) Best regards Tom
Top Bottom