RE: Intercept IE or Netscape

2005-02-21 Thread Steven Manross
/reference/collections/children.asp There's a link to the index page at the top right of this link for the Children collection to help get you started. Steven -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jerry Kassebaum Sent: Monday, February

RE: Intercept IE or Netscape

2005-02-21 Thread Jerry Kassebaum
Ken, I tried your code, adding "use Win32::OLE; " at the beginning, and using my site (biblescramble.com) instead of "http://whatever";. The browers pops up for a split second with my site. Now what? * It would probably be easier to drive IE via OLE my $ie = Win32::OL

Re: Intercept IE or Netscape

2005-02-21 Thread Jerry Kassebaum
Lyle, That sounds like EXACTLY what I would like to do. But...I don't know how. How do I create a proxy server? Or where would I find an existing one? Jerry *** Jerry Kassebaum wrote: This may be a socket question. Is there a way to read the data coming into my co

Re: Intercept IE or Netscape

2005-02-08 Thread $Bill Luebkert
Jerry Kassebaum wrote: > This may be a socket question. > > Is there a way to read the data coming into my computer to a file on its way > to my browser? Is there a way to intercept what the browser is going to > send to the internet, change it, and then send it out? Man, that would make > sc

Re: Intercept IE or Netscape

2005-02-08 Thread Jonathan Epstein
At 04:11 PM 2/8/2005, Glenn Linderman wrote: >On approximately 2/8/2005 11:32 AM, came the following characters from the >keyboard of Jerry Kassebaum: > >>This may be a socket question. >>Is there a way to read the data coming into my computer to a file on its way >>to my browser? Is there a way

Re: Intercept IE or Netscape

2005-02-08 Thread Lyle Kopnicky
Jerry Kassebaum wrote: This may be a socket question. Is there a way to read the data coming into my computer to a file on its way to my browser? Is there a way to intercept what the browser is going to send to the internet, change it, and then send it out? Man, that would make scraping the int

RE: Intercept IE or Netscape

2005-02-08 Thread Ken Cornetet
It would probably be easier to drive IE via OLE my $ie = Win32::OLE->new('InternetExplorer.Application'); $ie->Navigate("http://whatever";); $ie->{Toolbar} = 0; $ie->{StatusBar} = 0; $ie->{Width} = 800; $ie->{Height} = 400; $ie->{Left} = 0;