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

    reference to a function and a parameter in the same time

    too bad you can't edit : typo : tk::widgeOne { -command => [\&foo, ($paramWOne] } correct : tk::widgeOne { -command => [\&foo, $paramWOne] }
  2. CristianLuca

    reference to a function and a parameter in the same time

    Ok i found the solution, solution has to be implemented in the lhs , it goes like this : tk::widgeOne { -command => [\&foo, ($paramWOne] } that is one of the ways more@ http://search.cpan.org/~ni-s/Tk-804.027/pod/callbacks.pod
  3. CristianLuca

    reference to a function and a parameter in the same time

    used in tk::widget { -command => \&foo } but i have several widgets that use the same function but with different paramenters : tk::widgeOne { -command => \&foo($paramWOne )} tk::widgeTwo { -command => \&foo($paramWTwo )} tk::widgeThree { -command => \&foo($paramWThree)}
  4. CristianLuca

    reference to a function and a parameter in the same time

    hey guys , how can i pass a parameter to a function reference when i assign it. like my $funcAddr = \&foo($param) thanks
  5. CristianLuca

    Html::Pager

    Hello, does enyone have a simple html::pager example that i can look over, i have a hard time understanding it from the cpan site. Thank you, Cristian
  6. CristianLuca

    align 2 tables horizontaly

    hello, i have a simple problem, how can i align to tables horizontaly ? [table 1] [table 2] Thanks, Cristian
  7. CristianLuca

    DBI request using javascript

    My perl creates a html wich has a table with urls. I want , on the moment i click on an url to log on the database using javascript(that seemed for me an appropriate choice-i do not know java nor javascript) and display that page.
  8. CristianLuca

    DBI request using javascript

    Hello, I want to use javascript in a perl program that creates a html with a bunch of links that connect to dbi and gets the page content for those links. I know perl part, but the javascript part i lack. Thank you in advance, Cristian
  9. CristianLuca

    parsing issues

    how can i extract a root using a pattern match ? url type : <h2 class=r><a href=\"http://www.something.com/" i use this : <h2 class=r><a href=\"http:\/\/(.+?)\/\"/ but it grabs alot of things that i do not want. for example : <h2 class=r><a...
  10. CristianLuca

    Use of uninitialized value in pattern match (m//)

    $$_lines[$line] is defined , i print the value before using it and its not null and even if i add defined $$_lines[$line] && i still get the warning. And i use while instead of for because i modify the index while in the loop. Cristian
  11. CristianLuca

    Use of uninitialized value in pattern match (m//)

    Thanks Miller , very helpfull ! Cristian
  12. CristianLuca

    Use of uninitialized value in pattern match (m//)

    Hello guys, * I get this error when parsing the following lines : start clusterNo=1 value chunkNo=3 .................... * the code : while ($line <= $#$_lines) { chomp $$_lines[$line]; if ($$_lines[$line] =~ /start\s(\S*)=(\d*)/) { $clusterNo = $2...
  13. CristianLuca

    perl running using c3

    i noticed that cexec does not return enything when it comes to crontab execution, wierd. Enyone got eny experience with this ?
  14. CristianLuca

    CGI::Application::GDGraph issue

    I'm trying to learn how does CGI::Application::GDGraph works, but there isn't to much free and fast documentation out there, many just cut and paste from the same source : CPAN, and examples are not self explanatory when it comes to relate them with other components that use them or get used by...
  15. CristianLuca

    perl running using c3

    its a filename from that directory , the path is correct.
  16. CristianLuca

    perl running using c3

    This is really bugging me for a while . Here is what i want to do : I made a cronjob to run at each minute a script. That script logs on diferent machines and there it starts another script and return to my main script a result. I do that using c3. When i ran the main script manually it works...
  17. CristianLuca

    CGI::Application::GDGraph::lines

    Thank you !
  18. CristianLuca

    CGI::Application::GDGraph::lines

    Do eny of you guys have an explicit example of a small application that does this : http://www.jonblog.uklinux.net/www/presentation/img13.html I don't have too much time to go into perl graphics books, and i learn faster from examples, i wanted to do something like in the link, but that example...
  19. CristianLuca

    perl script return value

    Ok thank you , i got it. Cristian
  20. CristianLuca

    perl script return value

    Ok , thank you , it helped me understand this. One more thing how do i return something from the first script withought using print ? i don't want to print/store the returned value to nowhere just return it. Cristian

Part and Inventory Search

Back
Top