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: krkX
  • Order by date
  1. krkX

    Looking 4 a Image Resizer Script

    Try looking into GD, this can do all you want [ponder]KrK
  2. krkX

    Reporting tool formating

    Keep track of the last name, if it appears again dont print... print $name unless ($name eq $prev_name); [ponder]KrK
  3. krkX

    preg_replace question

    /->(.*?)<!-/ [ponder]KrK
  4. krkX

    Modifying files.

    Err, just a question..... Why ole on a simple csv ? Why not stay with VB if you reaaaally want to use ole ? Gimme me a shout if you want to know how to do this in perl... [ponder]KrK
  5. krkX

    extracting table along with HTML tags

    It sorta depends how you are reading your data, If you are using a filehandle, then start reading/buffering from <table till you find a </table> If i'ts in a var, then you could use a single regex in a while loop to ectract all the tables in your html. [ponder]KrK
  6. krkX

    Files younger than 24 hours old

    foreach( glob("/tmp/log*") ){ print "$_\n" if ((time - (stat($f))[9]) > 86400)); } So now you have some to choose from ;) [ponder]KrK
  7. krkX

    How do I call a subroutine with in Perl Module?

    Could be wrong here, but I alway's make sure that my "package" name is identical to the filename. So if I have testMod.pm it would be defined as : package testMod In the actual pl file i call it as: use testMod and then tesMod::<function> [ponder]KrK
  8. krkX

    PERL : save JPEG images

    I'd suggest using dbi, and save using a normal filehandle. Make sure that if you are using windows, taht you use "binmode". Gimme a shout if you dunno how to dbi to your dbs. [ponder]KrK
  9. krkX

    backspacing mistakes in interactive perl script

    How are you reading from prompt? STDIN ? [ponder]KrK
  10. krkX

    Menu not aligning in different resolutions

    That's nasty isn't it... You have to reverse enum the parent pos to fix that. Drop me an e-mail and i'll send you a script that positions menu's where ever on whatever resolution. (script works on netscape/mozilla and IE) krk [ponder]KrK
  11. krkX

    getElementsBy(what options)?

    getEmelementById iterate trhough the results..(for loop) [ponder]KrK
  12. krkX

    I need a directory listing script!!

    # See code below... # hope that helps.. # save code as cgi...or pl.. use strict; my $out_file = "myfile.htm"; #change my $dir = "yourdir"; # on win os make sure you double # eg c:\\winnt\\etc... open(FH, ">$out_file") ||die "Boo boo"; opendir(DH, $dir) ||die "boo boo"; while($file =...
  13. krkX

    Take variable name as hash name in multidimensional hash

    What is your goal ? Is 3 dimensions really needed ? [ponder]KrK
  14. krkX

    WinNT NIC Info

    No, worries... Thanks for helping, I'll continue my struggle to get the info from somewhere. [ponder]KrK
  15. krkX

    WinNT NIC Info

    That would do the trick for monitoring performance (actual speed). But I am trying to get the "set values", as they appear in the NIC settings. My problem is that the values are in the registry, but unlike w2k, there are no enum's to get corresponding values. I think these values are in the NIC...
  16. krkX

    Help: I need a way to add subtotals to a merged grid!

    Use an incode counter/variable declared as double. After your grid's filled up you have the the sum of your values. If you have more value's to summarize, use an array. [ponder]KrK
  17. krkX

    Saving rich text files with bullets causes problem

    Suggestion, Why not handle open and save's yourself using either the "open" statement or the commondialog ocx. RTF is the same as plain text, but with a lot of formatting. So saving rtf as text with rtf formatting would work just as fine. [ponder]KrK
  18. krkX

    WinNT NIC Info

    Tnx, I've tried those, but none of the stored values seem to have the speed and duplex settings unfortunately.... [ponder]KrK
  19. krkX

    WinNT NIC Info

    Hi, I am trying to get the speed and duplex from the nic(s) on multiple NT4 machines. I can get some info out of the registry, but the NT4 registry has proven to be far from complete concerning this. Any help is appreciated? WMI/API/Other... Thnx, [ponder]KrK
  20. krkX

    Order Of Execution

    You can use <% response.buffer = true %> This stores all executed in a temp buffr, IIS is done it dumps the whole page to the client.... [ponder] krK

Part and Inventory Search

Back
Top