Logo 
Search:

MS Office Answers

Ask Question   UnAnswered
Home » Forum » MS Office       RSS Feeds
  Question Asked By: Klarissa Schmidt   on Sep 13 In MS Office Category.

  
Question Answered By: Faiza Mian   on Sep 13

Here's an extract of how I use the XMLHTTP library in the SMF add-in:

Dim oHTTP As New XMLHTTP

sURL = "http://some.url.com"
oHTTP.Open "GET", sURL, False
oHTTP.Send
If oHTTP.Status = "200" Then
sData = oHTTP.responseText
Else
sData = "Error"
Endif

I'd use a later version of the XML library if you have it. You should have
version 3.0 -- that's what I use for the SMF add-in. I used to use version
5.0, but found out quite a few people didn't have it (or version 4.0) on
their machines and rolled back to 3.0.

Share: 

 

This Question has 10 more answer(s). View Complete Question Thread

 
Didn't find what you were looking for? Find more on Extracting Closing Prices Or get search suggestion and latest updates.


Tagged: