質問編集履歴
3
誤字
title
CHANGED
File without changes
|
body
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
Set httpReq = CreateObject("MSXML2.XMLHTTP")
|
10
10
|
|
11
11
|
With httpReq
|
12
|
-
.Open "GET",
|
12
|
+
.Open "GET", "パラメータ入りURL", False
|
13
13
|
.send
|
14
14
|
strRes = .responseText
|
15
15
|
End With
|
2
誤字
title
CHANGED
File without changes
|
body
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
Set httpReq = CreateObject("MSXML2.XMLHTTP")
|
10
10
|
|
11
11
|
With httpReq
|
12
|
-
.Open
|
12
|
+
.Open "GET", __URL__, False
|
13
13
|
.send
|
14
14
|
strRes = .responseText
|
15
15
|
End With
|
1
誤字
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
ご教授いただけると幸いです。
|
5
5
|
|
6
6
|
```VBA
|
7
|
-
Dim
|
7
|
+
Dim httpReq As Object
|
8
8
|
Dim strRes As String
|
9
9
|
Set httpReq = CreateObject("MSXML2.XMLHTTP")
|
10
10
|
|