This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Echo off | |
set "inkscapePath=C:\Program Files\Inkscape\inkscape.exe" | |
set /a count=0 | |
set validInput1=svg | |
set validInput2=pdf | |
set validInput3=eps | |
set validOutput1=eps | |
set validOutput2=pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Public Sub SplitPresentation2PDF() | |
Dim CurrentPres As Presentation | |
Dim strPath As String | |
Dim strExtension As String | |
Dim strFileName As String | |
Dim iNumOfSlides As Long | |
Dim i As Long |