Sub SaveAllDocsInFolderAsPDF()
' Originally from https://www.reddit.com/r/Office365/comments/1ct9c83/batch_converting_docx_files_to_pdf_files_using/
Dim strPath As String
Dim oDoc As Document
Dim strFilename As String
Dim Count As Integer
strPath = LetUSerSelectFile("Select folder containing the .docx files", True)
This file contains hidden or 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
| /* Simple copy to clipboard action | |
| * --- | |
| * This script adds a simple "copy to clipboard" button to code elements located within <pre> elements. | |
| * Requires jQuery. Can be used with the Jekyll Minimal Mistakes theme by adding it to the 'after_footer_scripts'. | |
| */ | |
| function sleep(ms) { | |
| return new Promise(resolve => setTimeout(resolve, ms)); | |
| } | |
| async function onClickEffect(btn, style) { |
This file contains hidden or 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
| package issue.test; | |
| import com.badlogic.gdx.ApplicationAdapter; | |
| import com.badlogic.gdx.Gdx; | |
| import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application; | |
| import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration; | |
| import com.badlogic.gdx.graphics.Color; | |
| import com.badlogic.gdx.graphics.GL20; | |
| import com.badlogic.gdx.graphics.Mesh; | |
| import com.badlogic.gdx.graphics.glutils.ShaderProgram; |
This file contains hidden or 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
| /* | |
| * Copyright 2020 eskalon | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at: | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software | |
| * distributed under the License is distributed on an "AS IS" BASIS, |
This file contains hidden or 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
| buildscript { | |
| apply from: 'gradle/libgdx-versions.gradle' | |
| repositories { | |
| mavenLocal() | |
| mavenCentral() | |
| maven { url "https://plugins.gradle.org/m2/" } | |
| maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } | |
| jcenter() | |
| google() |