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

  • Users: hyperphoenix
  • Order by date
  1. hyperphoenix

    rows insteads of columns

    tonights sci-fi night at my house. :-)
  2. hyperphoenix

    rows insteads of columns

    thanks -- works perfectly. do you work for tek-tips or just do this for fun?
  3. hyperphoenix

    print

    i have posted my response in the other thread -- so how do you delete unwanted treads? i am thankful for your quick response just doing this for fun - what are you doing this for?
  4. hyperphoenix

    rows insteads of columns

    script that i am currently using: #!/usr/bin/perl -w open(FILE,"source.txt") || die "Where is Source File?: $!"; open MYFILE, ">export.txt"; select MYFILE; while ( <FILE> ) { if (/searchfield1/ || /searchfield3/ || /searchfield4/ || /searchfield4/) #I'm searching for any of these...
  5. hyperphoenix

    rows insteads of columns

    still not able to get this script running with the data that I have -- is there a print command that works? I have a working script but it displays in columns not rows .
  6. hyperphoenix

    print

    can print display results in rows instead of columns? thank you
  7. hyperphoenix

    rows insteads of columns

    ok will work on it -- thanks for your assistance.
  8. hyperphoenix

    rows insteads of columns

    well I have killed this script - any suggestions appreciated. #!/usr/bin/perl -w use strict; use warnings; # location of read/open file: open(Source,"test.txt") || die "Cannot open file: $!"; chomp @File; # location of new/write file open Export, ">export.xls"; select Export; #...
  9. hyperphoenix

    rows insteads of columns

    sorry used the wrong terminology. I'll show you what I have and what I'm looking to accomplish. pulling data from a txt document similar to this: ************************************************** From ???@??? Wed, Jan Sep 2008 10:52:56 -0400 Date: Wed, 10 Jan 2008 10:52:56 -0400 From...
  10. hyperphoenix

    rows insteads of columns

    maybe i should have mentioned I'm using active perl in windows
  11. hyperphoenix

    rows insteads of columns

    possibly something like this --- This doesn't work but i think you'll be able to see what I'm look for with it... Trying to get data that is polled like this 1234 4567 abcd Same To poll like this instead 1234 abcd 4567 same ************************ something like this ***********...
  12. hyperphoenix

    rows insteads of columns

    Is there a way to print found data in rows instead of a vertical column? overview: using this to find data in a txt file while ( <FILE> ) { if( /1stfield/ || /2ndfield/) #I'm searching for strings with the word '1stfield' and '2ndfield.' { and using print to poll data - need the...
  13. hyperphoenix

    Interesting script

    solution -- the original file works When you have the doc file open it can't save/delete because it's being used by another program in this case office 2007 which is sorta Temporamental to any type of sharing.
  14. hyperphoenix

    Interesting script

    thanks for your assistance. I don't actually have a goal with this other then to learn something new. It's nice to work on this without a deadline. I like working on these scripts just in case I might need to know this in the future. I am getting a few errors but I don't mind it'll give me...
  15. hyperphoenix

    Interesting script

    *your wrote** you may want to rethink how $targetfile is built **end quote** any suggestions?
  16. hyperphoenix

    parsing outlook

    --- You wrote: "Exchange server, you could look into using MAPI. " --- end of quote --- Just being able to pull the data as in looking for anything after the word account: or Username: Would you need admin access to the exchange server or could this be done from an end user account within...
  17. hyperphoenix

    parsing outlook

    anyone have a script to parse outlook or txt email files? I have a few ideas but thought I'd ask just in case anyone here has already climbed this mountain. thanks
  18. hyperphoenix

    instructions

    anyone have a good set of instructions for gimp? I learned on the macromedia suite and I miss the drop & drag features but gimp has surpassed my older version of macromedia. Any help appreciated. thanks.
  19. hyperphoenix

    general question

    outlook calendar 2003 had the ability to display the dates in a more coherient manner. In 2007 the dates in the calender get all masses up when you try to view mutiple calendars at once. Such as a helpdesk that needs to view mutiple classrooms schedules, conference schedules etc. I was curious...
  20. hyperphoenix

    Interesting script

    Source of script: http://wiki.preshweb.co.uk/doku.php?id=perl:scripts:auto-name-incoming This script appears to have some usability for me but I am unsure where the watch & target folders should be placed in the script. Watch & Target are defined in the authors brief intro below. I am assuming...

Part and Inventory Search

Back
Top