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 SkipVought 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. PaulTEG

    Back Button

    Ajax in 30 seconds ... well near enough at any rate ... Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  2. PaulTEG

    Vanity Plates "Lucky" XIII

    Anyone remember Viz Top-Tips I saved myself a fortune on vanity plates, by changing my name by deed-poll to the license plate I already have Mr KVL 741Y, Norwich Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  3. PaulTEG

    Dialed vs. Dialled

    Sometimes, I think manufacturers do it on purpose, just to give us something to give out about -- YMMV ;-) Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  4. PaulTEG

    RIP: Steven R. Covey, Author of '7 Habits of Highly Effective People', dies at age 79

    @2ffat, I doubt she'll be over the moon with the news of Bardley Wiggins, and Shane Sutton (TeamGB cycling coach) involved in seperate accidents last night/this morning, and they know what they're doing ;-) Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all...
  5. PaulTEG

    How to remove password authentication on a Unix server.

    You want to open the server to attack? Is SSHAuthentication enabled? Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  6. PaulTEG

    unintialized value $_ in concatenation <.> or string

    check if it's an uninitialised value, and if it isn't, print it ... Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  7. PaulTEG

    TK - How to update Window automatically

    Put the line which draws the line inside a while loop, and sleep ? Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  8. PaulTEG

    Form to email - multiple recipients

    We'd need to see the code ... Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  9. PaulTEG

    Copying an array

    what's the problem ... Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  10. PaulTEG

    Perl, MS SQL, DBI and catching errors.

    If primary key present, then update, not insert? Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  11. PaulTEG

    Running a perl script from the crontab

    Have you tried writing some debug out to a logfile. Is it that the script doesn't run at all, or it definitely runs, but does jack and craps out, or what seems to be the issue? Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  12. PaulTEG

    Array of Hashes -> XLS / CSV

    Check out CPAN, look for Spreadsheet::WriteExcel Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  13. PaulTEG

    Net::Telnet output_log

    you could use windump or tcpdump to capture all traffic on the telnet port, 23 as standard. Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  14. PaulTEG

    Tk display image path

    Try using an absolute path to the image "C:\Documents and Settings\User\Dox\image.gif" Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  15. PaulTEG

    how to pass parameters to system call

    what files are you seeing being printed when you run the script - the output from the dir command? Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  16. PaulTEG

    how to pass parameters to system call

    there should be more than just "system failed: ". try getting the directory listing for the script just before calling md5sum @dir=`dir`; print join "\n", @dir; Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  17. PaulTEG

    mySQL Remote Server Connection

    so you're sorted now? if not amend travs69's script for your own details, and see what happens ... Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  18. PaulTEG

    mySQL Remote Server Connection

    are you sure it's listenting on the correct port, and that no firewall is blocking access? Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
  19. PaulTEG

    edit text file

    while (<FH>) { # read the file, line by line into $_ ($key, @values)=split /\s+/, $_; set $key to the first item in the line, and the rest of the values gathered by the split get dumped into the array foreach (@values) { # traverse the array, and output the key value, and each item in...
  20. PaulTEG

    edit text file

    read in your line split it write out the requisite lines open FH, "<infile.txt" or die $!; open OF, ">outputfile.txt"; while (<FH>) { ($key, @values)=split /\s+/, $_; foreach (@values) { print OF, "$key\t$_"; } }You may wish to get rid of the commas, but I'll leave that up to you ...

Part and Inventory Search

Back
Top