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 IamaSherpa 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. Capellone

    How can I factor this nested loop?

    Use XPath and an external validator.
  2. Capellone

    File handlers

    I know: use Symbol; # sub new { my $class = shift; my $this = bless {}, $class; $this->{FILEHANDLER} = gensym; open ($this->{FILEHANDLER},">$fileName") || die "Unable To Open file $fileName"; return $this; }
  3. Capellone

    File handlers

    Hello, What kind of perl variable is a file handler? How to make a file handler to be an "instance memeber"? I have a perl class module for writing to a file - each object (insatnce of this class) write to its own file; i want any object to keep its file handler, but i dont know how to...
  4. Capellone

    Using external global variable

    Hello, In "script1.pl" I have a global object variable: my $startup = new Startup($dir); In "module.pm" I want to use variable $startup. I have strict declaration enabled. How to do this?

Part and Inventory Search

Back
Top