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
| document.getElementById('download').click(); |
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
| Sub RunProgram() | |
| On Error GoTo OpenFileError | |
| Dim filePath As String | |
| With Application.FileDialog(msoFileDialogOpen) | |
| .AllowMultiSelect = False | |
| .Title = "Run Program" | |
| .Show | |
| filePath = .SelectedItems.Item(1) |