Ich habe Excel-Datei, die einen VB-Code in sich hat, das wie folgt aussieht:VBA-Code Änderung Probleme
Sub UPISIVANJE_IZ_CELIJA_U_FILE()
Dim iCntr
Dim strFile_Path As String
strFile_Path = "C:\script generator v1.1\start.bat"
Open strFile_Path For Output As #2
For iCntr = 1 To 10041
Print #2, Range("E" & iCntr)
Next iCntr
Close #2
End Sub
-Code ohne Probleme funktioniert. Woran ich Probleme habe, ist der Speicherort der Datei start.bat. Ich möchte, dass diese Datei am gleichen Speicherort erstellt wird, an dem sich die Excel-Arbeitsmappendatei befindet. Ich habe versucht, mit diesem:
strFile_Path = ".\start.bat"
Aber natürlich hat es nicht funktioniert.
Versuchen Sie 'strFile_Path = ThisWorkbook.Path +" \ start.bat "' –