Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. cacheung

    LWP, HTTP Form and Javascript

    Thanks Kirsle. I tried your suggestion, but now I got No clickable input with name SUBMIT
  2. cacheung

    LWP, HTTP Form and Javascript

    Hi, I used to be able to use LWP and HTTP::Form to grab a web form, fill it out and click on the submit button. my $ua = LWP::UserAgent->new(); ... # set $form ... $ua->request($form->click('HitIt')); Now, the form has been changed: <input type="button" value="Submit"...
  3. cacheung

    online tutorials for Win32::OLE?

    Hi, Does anyone know of any online tutorials for using Win32::OLE? Specifically in relation to manipulating powerpoint presentations. Thanks in advance, C
  4. cacheung

    LWP UserAgent can't 'get'

    Hi, Here's the code: use LWP::UserAgent; use Data::Dumper; my $url = 'http://www.google.com/'; my $ua = LWP::UserAgent->new(); #$ua->timeout(300); my $response; $response = $ua->get($url); #$response = $ua->get($url, # 'User-Agent' => 'Mozilla/4.76 [en] (Win98; U)', #...
  5. cacheung

    LWP UserAgent can't 'get'

    Hi, Apologies if I am not using the correct terminology. The only url's that return a response when I LWP::UserAgent->get are local web pages. I can't seem to 'get' external urls ... well, actually, get times-out. Does any one know the reasons why this is happening? Thanks in advance. C
  6. cacheung

    New to TCL: passing argument with curly brace

    How can I remove curly braces from a string using regsub? I want to do something like regsub -all {[\{]} $string {} var where $string contains a left curly-brace and the result is in $var. The above doesn't work. Thanks in advance.

Part and Inventory Search

Back
Top