W
witek
Here is a piece of code
Dim http As MSXML2.ServerXMLHTTP
Set http = New MSXML2.ServerXMLHTTP
http.Open "get", url, False
http.send
If http.Status = 200 Then
m_doc1.body.innerHTML = http.responseText
right after last instruction a security popup window appears with the text:
"Windows Security Warning
To allow this website to provide information personalized for you, will
you allow it to put a small file (called a cookie) on your computer?"
does anybody know how to disable that.
the best solution would be to disable by code.
Dim http As MSXML2.ServerXMLHTTP
Set http = New MSXML2.ServerXMLHTTP
http.Open "get", url, False
http.send
If http.Status = 200 Then
m_doc1.body.innerHTML = http.responseText
right after last instruction a security popup window appears with the text:
"Windows Security Warning
To allow this website to provide information personalized for you, will
you allow it to put a small file (called a cookie) on your computer?"
does anybody know how to disable that.
the best solution would be to disable by code.