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 dencom 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: *

  • Users: JD9955
  • Content: Threads
  • Order by date
  1. JD9955

    .NET browser object for complex work

    Hi All, I am after a result which will mimick the following perl code in .NET (using a browser object) (i.e. LWP) ########################## use lwp::useragent; my $ua = new lwp::useragent; my $response = $ua->post('https://www.example.com/Login.htm', { param1 => 'value1', param2 =>...
  2. JD9955

    LWP and .NET / Java

    Hi All, I have asked this to many .NET and Java programmers and they just cant seem to grasp my requirement, so I will ask my trusty Perl buddies who will be able to relate better (from the perl side of things).. I am after a result which will mimick the following perl code in .NET (using a...
  3. JD9955

    Save XLS as Web Page

    Hi All, I currently need to save an xcel file to a web page (.htm). Example: I have fileA.xls and wish to imitate a "Save As" in xcel to create fileB.htm. I cannot just rename the file to a .htm as it does not include the formatting of a html web page.. has anyone performed this before ...
  4. JD9955

    concurrent processes.

    Hi All, I am after a way in which I can run 2 perl programs in parallel.. Currently I have the following code which executes 2 programs consecutively, (not concurrently) .. While (1 = 1) { system "perl Program1.pl" || die "Cannot open"; system "perl Program2.pl" || die "Cannot open"; sleep...
  5. JD9955

    W2K and AIX Perl

    Hi All, I have just written a perl program in windows to be run on a W2K machine.. I am wondering if this same program can be run on an AIX machine too? sorry, I am very new to perl.. thanks all :) Regards, JD.
  6. JD9955

    How to start invisible perl process?

    hi all, I am wondering how I can start a perl process which doesn’t show a general cmd screen.. Eg, at the moment I have a perl program that doesn’t write output to a screen (only a file). This program forever loops and writes to a file. Now, I have a batch file which contains the following...
  7. JD9955

    Timer starting and stopping

    Hi All, I have a request that hopefully someone will be able to help out with.. Involving Timers. I need to perform the following: Start 10 second timer loop # Perform logic (i.e. send request to webserver and wait for response) If response comes back within the 10 second timer (i.e...

Part and Inventory Search

Back
Top