質問編集履歴
1
修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -11,8 +11,6 @@
|
|
11
11
|
|
12
12
|
### 該当のソースコード
|
13
13
|
Option Explicit
|
14
|
-
set VFile01 = Wscript.Arguments(0)
|
15
|
-
set VPath01 = Wscript.Arguments(1)
|
16
14
|
' 統合したファイルの保存名
|
17
15
|
Dim margedBookPath
|
18
16
|
margedBookPath = = VFile01
|
@@ -34,9 +32,15 @@
|
|
34
32
|
ではうまく動作します。
|
35
33
|
--------------------------------------------------
|
36
34
|
ここに問題に対して試したことを記載してください。
|
35
|
+
1 引数の設定でsetを外してもダメでした。
|
36
|
+
VFile01 = Wscript.Arguments(0)
|
37
|
+
VPath01 = Wscript.Arguments(1)
|
37
38
|
|
39
|
+
2
|
38
40
|
>wscript "excel2.vbs d:\test\excelvbs" "d:\test\excelvbs\result\test.xlsx"
|
39
|
-
でも同様でした。
|
41
|
+
でも同様でした。set VFile01 = Wscript.Arguments(0)
|
42
|
+
set VPath01 = Wscript.Arguments(1)
|
40
43
|
|
41
44
|
|
45
|
+
|
42
46
|
引数の記載に関してご教示お願いします。
|