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

  • Users: iamberb
  • Content: Threads
  • Order by date
  1. iamberb

    Excel with header and lines in one sheet How to handle ?

    Hi, I have a guess commong question where I struggle with Excel. I have a header: hattr1, hattr2 and each header has 1 .. n lines with attr: nattr1,nattr2,nattr3 How to handle and enter this efficiant in 1 sheet: hattr1 hattr2 nattr1 nattr2 nattr3 Head1 AA Line1 C D Head1 AA...
  2. iamberb

    Why doesWord 2002 SP2 replace UNC path with relative path after save ?

    I experience a very strange behaviour when using absolute UNC pathes. After the save it converts to some relative path which makes no sense at all. See example below: \s01-itwal\iccsetup$\Vaj_353.EN and after save it converts to: ../../../../../../../../../iccsetup$/Vaj_353.EN Does anyone have...
  3. iamberb

    UNC links are replaced by relative path

    Hi, I have big problems with word 2002 SP2 concerning absolut links. I enter \\s01-itwal\iccsetup$\Vaj_353.EN and after save it converts to: ../../../../../../../../../iccsetup$/Vaj_353.EN Thanks for your help!
  4. iamberb

    How to call a method with arguments via eval ?

    Hi, I have problems with eval when I want to call a procedure inside eval which passes a argument. This line fails when i pass $firstname. If I call without argument it's fine. my $code = eval "sub {get_lastname($firstname);}"; Error: Undefined subroutine &main:: called at...
  5. iamberb

    How to get perl date time down to milliseconds ?

    Hi, Can any one help how I can get the date and time down to milliseconds ? localtime() just delivers if I understood up to seconds. Thanks! brg Robert
  6. iamberb

    eval error: Undefined subroutine &main:: called at eval_test.pl line 5

    When i use this: my $code = eval "sub { return check_name(true); }"; $return=&$code; I get error: Undefined subroutine &main:: called at eval_test.pl line 5 but this is OK. my $code = eval "sub { return check_name(); }"; So it must have something to do with argument passing inside eval. What i...
  7. iamberb

    Argument Checker

    Hi, Has someone written a smart and flexible argument check routine. One most boring code to write again and again is to check the arguments validity of arguments passed to some perl tools. I am looking for some package which can handle argument checks dynamically. Pass what arguments should...
  8. iamberb

    Dynamic Code Execution in Perl ?

    Hi, Is there some way to execute dynamic code in perl. Something like reflection in other languages. Lets assumed I have a field containing: $tag1="test"; $check="$tag1 eq ""hallo"""; if (dyn($check)) { } So I want before executing the if to assume that instead of dyn($check) the content is...

Part and Inventory Search

Back
Top