Open PDF file add text

arcaidius

Board Regular
Joined
Dec 4, 2018
Messages
97
Hello,

I am trying to browse a folder, select the pdf file to open and add a shape from the spreadsheet to every page in the PDF File.
I have the browse folder portion of the code, but I am not very familiar with PDF to finish this code. Can anyone help?

Shape Name: Rectangle: Rounded Corners 2 (Its basically an approval stamp)

VBA Code:
Sub Stamp_Click()

    Dim FileToOpen As String
  
    With Application.FileDialog(msoFileDialogFilePicker)
        .AllowMultiSelect = False
        .Filters.Clear
        .Filters.Add "All Files", "*.*"
        .InitialFileName = ThisWorkbook.Path & "\"
        .Title = "Browse for the file to Import"
        .Show
        If .SelectedItems.Count > 0 Then
            FileToOpen = .SelectedItems(1)
           

        End If
    End With
  
End Sub
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
You can add a shape, as an image, to PDF pages with the Acrobat API library, however that's only available with Acrobat Pro versions, not the free Adobe Reader.
 
Upvote 0
Solution

Forum statistics

Threads
1,214,851
Messages
6,121,931
Members
449,056
Latest member
denissimo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top