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 | |
Dim strPath | |
Dim shortCutPath | |
Dim rootDir | |
' path to the shortcut without the ".lnk" extension | |
shortCutPath = "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\GEOVIA\GEOVIA Surpac 6.7.1 (x64)" |
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
#include <iostream> | |
#include <string> | |
#include <windows.h> | |
#include <tchar.h> | |
void _tmain(int argc, TCHAR *argv[]) { | |
STARTUPINFO si; | |
PROCESS_INFORMATION pi; |
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
/* | |
VC++ Directories | |
---------------- | |
Include Directories: C:\Anaconda3\include | |
Library Directories: C:\Anaconda3\libs | |
*/ | |
#include <iostream> |
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
puts [package names] | |
package require twapi | |
set excel [::twapi::comobj Excel.Application] | |
$excel DisplayAlerts [expr 0] | |
set workbooks [$excel Workbooks] | |
$workbooks Open "C:/Users/willblatt/BlattBros/Projects/10000 Temp/XLS_Files_Chip/CHIP_ASSAY_TABLE.xlsx" | |
set workbook [$workbooks Item 1] |