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. sumncguy

    Vlookup Excel 03

    Thanks John. Works like a charm. =IF(CountIf(C:C, A1)>0, "YES", "NO") =IF(COUNTIF($I$1:$I$76, G2)>0, "YES", "NO") 10.1.1.10 NO 10.1.1.11 YES 10.1.1.11 10.1.1.12 YES 10.1.1.12 10.1.1.13 YES 10.1.1.13 10.1.1.14 YES 10.1.1.14 10.1.1.15 YES 10.1.1.15 10.1.1.16 YES 10.1.1.16 10.1.1.17 YES...
  2. sumncguy

    Vlookup Excel 03

    I start out with a list of ip addresses a1-a8. I use the data set in a1-a8 to perform some function within the unix environment that returns a list completions; another list of ip addresses. I am trying to figure out how to use Vlookup to compare the two columns. If an ip address is in column a...
  3. sumncguy

    Free web site builder - not yahoo / google

    Does anyone know of a Front page equivalent thats free ... maybe like open office ? Tks
  4. sumncguy

    Reading / usingdata from a field

    Got it ...played a little... no way to delete a post huh ?
  5. sumncguy

    Reading / usingdata from a field

    How do I apply $entry->get to the existing field ? I want to grab user content, a file name and location, and use it elsewhere. my $filfld = $left2->Entry(-background=>'blue', -foreground=> 'white', -width=>20, -borderwidth=>3, -relief=>'sunken',)->pack(); passing either scalar to the sub...
  6. sumncguy

    Putting contents of array in notepad

    lines of text taken from a ascii text file. tar was just something to hit quickly on the keyboard. Not very spontaneously creative about my var and array names :) most x, y, z's .. alpha bravo charlie -- house car boat etc etc. tks
  7. sumncguy

    Putting contents of array in notepad

    qx("notepad @tar"); Tried this doenst work. App starts but doesnt know the path. Can anyone tell me how this is done. I searched all 4 of my books and the FAQ's .. prolly missing it. Tks
  8. sumncguy

    Keeping the CMD window from opening

    who knows man ... I could be screwin sumtin up too ... the faster I go the more behind I get ... At any rate, thanks ...
  9. sumncguy

    tk body of winda

    Uhhhh .. yeah .. probably ... dang knucklehead right ? :) Guess anudder set of eyes helps some times. Thanks
  10. sumncguy

    tk body of winda

    #build body my $top = $main->Frame->pack(-side =>'top', -fill => 'x'); my $left1 = $top->Frame->pack(-side =>'left',pady => 9, padx => 8); Im moving along nicely, thinking Im some cool perl guy and when I add the LEFT1 line I get the following error. running 5.8.8 ... C:\perlwin32gui>fm.pl...
  11. sumncguy

    Keeping the CMD window from opening

    Sorry for the spam, man ... tried to search ... but dont always pick the right sequence ...
  12. sumncguy

    Keeping the CMD window from opening

    my $main = MainWindow ->new; MainLoop; When I execute this snippet of code, by double clicking on x.pl I get the expected results but a cmd window opens. Is there a way to inhibit the cmd window from opening ? Thanks
  13. sumncguy

    Comparison of lines in two separate files

    Ok thanks guys n gals.. definitely helped but got anudder question Why does this work in unix solaris 5.8.2 #!/usr/local/bin/perl -w open (FILE1, "/tftpboot/fidprow1") or die; open (FILE2, "/tftpboot/fidprow") or die; @xray=<FILE2>; for $line (<FILE1>) { if (!(grep $line eq $_...
  14. sumncguy

    Comparison of lines in two separate files

    Thanks .. great link too .. cut through alot of bull and give nice examples. Will let you know how it works tomorrow when I return to the grind. Thanks Again Chris
  15. sumncguy

    Comparison of lines in two separate files

    I want to make sure that file2 includes the mandatory lines defined in FILE1. #!/usr/local/bin/perl -w # open (FILE1, "/tftpboot/houseboat") or die; open (file2, "/tftpboot/carboat") or die; @xray=<file2>; for $line (<FILE1>) { #check to see if "$line" is resident in @xray. If so, do...
  16. sumncguy

    URRRRGH .. FRUSTATED .. PARSING

    Sorry forgot to give some code $result =~ m/Version (.*)/; @ver = split (/ /, $1); print "$ver[0]\n"; Pretty crappy huh ??
  17. sumncguy

    URRRRGH .. FRUSTATED .. PARSING

    if a $result contains the following, what is the best way to grab only 12.2(18)SXF8 ? SNMPv2-MIB::sysDescr.0 = STRING: Cisco Internetwork Operating System Software IOS (tm) s72033_rp Software (s72033_rp-ADVENTERPRISEK9_WAN-M), Version 12.2(18)SXF8, RELEASE SOFTWARE (fc2) Copyright (c) 1986-2007...
  18. sumncguy

    Getting Perl Expect to hold for user input

    After racking my brains for a few weeks, I found that Expects interact will hold and continue / return based on user input. Im now trying to accomplish that with the Perl Expect.pm module. It says ... # $process->interact([$in_handle],[$escape sequence]) $child->interact()...
  19. sumncguy

    Cron like function ?

    The unix admin folks choose not to give me cron or at access ... Does Perl have a way of looking at a pcs clock and kicking off a script .. that is that isnt too hard for a wanna be rookie like me to setup :) Thanks alot folks
  20. sumncguy

    Using the System function to point to c:\Progra files

    Thanks alot ... apreeech

Part and Inventory Search

Back
Top