Re: Program to scrape text from web page

2007-02-22 Thread MB Software Solutions
Andy Davies wrote: > Michael Babcock said "I want to launch whatismyip.com and scrape the ip > value from that." > > Chech the archive - I'm pretty sure I've posted the code to do exactly that > - if not it's just straight xmlhttp stuff. > > > will do...thanks! -- Michael J. Babcock, MCP MB S

Re: Program to scrape text from web page

2007-02-22 Thread Andy Davies
Michael Babcock said "I want to launch whatismyip.com and scrape the ip value from that." Chech the archive - I'm pretty sure I've posted the code to do exactly that - if not it's just straight xmlhttp stuff. Andrew Davies  MBCS CITP   - AndyD    8-)# ***

RE: Program to scrape text from web page

2007-02-21 Thread Sales Info
Michael and others, There's a new version of wwIPstuff available at www.west-wind.com. I believe this is a major upgrade so there's a cost to upgrade. Malcolm ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://leafe.com/mailman/li

RE: Program to scrape text from web page

2007-02-21 Thread Kevin Ragsdale
Michael J. Babcock wrote: >> I want to launch whatismyip.com and scrape the ip value from that. Mike, With the West-Wind Internet Protocols, you could use the wwHTTP class: oHTTP = CREATEOBJECT("wwHTTP") lcHTML = oHTTP.HTTPGet("http://www.whatismyip.com";) IF !EMPTY(lcHTML) lcIP = ST

Re: Program to scrape text from web page

2007-02-21 Thread MB Software Solutions
Dave Bernard wrote: > I would probably need to know more specifics about the web page side. Do you > control it? Is it a public page? > It's a public page. Specifically, I want to launch whatismyip.com and scrape the ip value from that. (On that note, I guess I don't need to programatically

RE: Program to scrape text from web page

2007-02-21 Thread john harvey
this than having to launch, navigate and populate their webpages. John -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Bernard Sent: Wednesday, February 21, 2007 5:43 PM To: profox@leafe.com Subject: RE: Program to scrape text from web page Try thi

RE: Program to scrape text from web page

2007-02-21 Thread Dave Bernard
: Re: Program to scrape text from web page Dave Bernard wrote: > Try this: > > oHTTP = CreateObject("MSXML2.XMLHTTP") > oHTTP.Open([GET], .lcMQURL, .F.) > oHTTP.Send() > > .lcMQXML = oHTTP.ResponseText > lcHTMLCode = .lcMQXML > > That's cool, but

Re: Program to scrape text from web page

2007-02-21 Thread MB Software Solutions
Dave Bernard wrote: > Try this: > > oHTTP = CreateObject("MSXML2.XMLHTTP") > oHTTP.Open([GET], .lcMQURL, .F.) > oHTTP.Send() > > .lcMQXML = oHTTP.ResponseText > lcHTMLCode = .lcMQXML > > That's cool, but I should expand my original post: I need to populate values in textboxes in the web page,

RE: Program to scrape text from web page

2007-02-21 Thread Dave Bernard
Try this: oHTTP = CreateObject("MSXML2.XMLHTTP") oHTTP.Open([GET], .lcMQURL, .F.) oHTTP.Send() .lcMQXML = oHTTP.ResponseText lcHTMLCode = .lcMQXML -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of MB Software Solutions Sent: Wednesday, February 21, 2007 6: