![]() |
#4
|
||||
|
||||
![]()
See the attached document. It contains three checkboxes with the associated pdf filename listed against the tag property for each one. The macro can be run by double clicking the first paragraph above the check boxes.
The PDF files will need to be in the same folder as the Word document. Code:
Option Explicit Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" ( _ ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, _ ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long Public Function PrintPDF(xlHwnd As Long, FileName As String) As Boolean Dim X As Long On Error Resume Next X = ShellExecute(xlHwnd, "Print", FileName, 0&, 0&, 3) If Err.Number > 0 Then MsgBox Err.Number & ": " & Err.Description PrintPDF = False Else PrintPDF = True End If On Error GoTo 0 End Function Sub PrintDocs() Dim aCC As ContentControl, sFile As String, sPath As String sPath = ActiveDocument.Path & Application.PathSeparator For Each aCC In ActiveDocument.ContentControls If aCC.Type = wdContentControlCheckBox Then If aCC.Checked Then sFile = sPath & aCC.Tag If Not PrintPDF(0, sFile) Then MsgBox "Printing failed: " & sFile End If End If Next aCC End Sub
__________________
Andrew Lockton Chrysalis Design, Melbourne Australia |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Need Macro to select Checkbox after two boxes are checked in a series of checkboxes | rsaini | Word VBA | 0 | 01-16-2018 11:57 AM |
Total Checked FF Check Boxes | CarlCR | Word Tables | 2 | 07-13-2016 12:01 PM |
Template opens with userform ; non-checked boxes should lead to deletion of corresp paragraphs | samszaf | Word | 1 | 09-07-2015 09:52 AM |
how to show total of check boxes checked | worder | Word | 16 | 03-10-2014 05:07 PM |
Create makro that counts the number of checked tick boxes in a survey | johannapaj | Word VBA | 0 | 09-05-2011 01:51 AM |