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 TouchToneTommy 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: grimbys
  • Content: Threads
  • Order by date
  1. grimbys

    how can Apache run Java under Perl?

    Hi, I have a perl script with this sentence: ... system "java program_java"; ... My script runs fine on my command line, but when I run it from navigator, with my Apache server and mod_perl active, it won't run fine. Have I to install Tomcat or Apache Jserver? What can I do? Thanks you
  2. grimbys

    A perltk newbie cuestion access to my textbox?

    Hi, I'm starting to write gui applications, I've never seen nothing about 'frames and windows' ... I have a problem: my $MW = MainWindow -> new; my $menubar = build_menubar; my $frame = $MW->Frame(qw/-width 300/)->pack; my $text = $MW->Text()->pack; # How can I access to this ($text)...
  3. grimbys

    How to use Time::HiRes or other module?

    Hi, I want to use Time::HiRes module, but perl gives me next error: Can't locate loadable object for module Time::HiRes in @INC (@INC contains: ./Time /usr/lib/perl5/5.8.0/i386-linux-thread-multi /usr/lib/perl5/5.8.0 /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi...
  4. grimbys

    Newline into a attribute? (Mozilla)

    Hi! I've got a problem with CSS and Mozilla. I want title attribute with files: <span class = &quot;A&quot; title = &quot;File 1 File 2 File 3 ... File n> it's class A </SPAN> IExplorer gets me it ok. Konqueror gets me it ok too. But Mozilla doesn't get me it not ok. ( Mozilla ignores...
  5. grimbys

    small text like a hint popup?

    Hi! I'd like to make a page with the next behaviour: If it is possible using CSS ... Example: ... <STYLE> SPAN.NUMBER {background:green} </STYLE> ... <SPAN CLASS=&quot;NUMBER&quot; XXX=YYY> 888 </SPAN> ... When I put on mouse over 888, I'd like a small textbox (a comment / hint and not a edit...
  6. grimbys

    small textbox popup?

    Hi! I'd like to make a page with the next behaviour: If it is possible using CSS ... Example: ... <STYLE> SPAN.NUMBER {background:green} </STYLE> ... <SPAN CLASS=&quot;NUMBER&quot; XXX=YYY> 888 </SPAN> ... When I put on mouse over 888, I'd like a small textbox (a comment / hint and not a edit...
  7. grimbys

    How many groups in a regex?

    Hi again, I need a copy of $1..$last after a $var =~ /$er/ is done. Is there any var that says how many groups are there at last expression evaluate? For example, I'd like: $var =~ /$er/; # $n_groups = n_match_parents ($er) map { $groups{$_} = ${$_}} 0 .. $n_groups; How I can get $n_groups...
  8. grimbys

    Debugging perl, breakpoint at specific file

    Hi! I want to use perl' debugger. How can I enable a breakpoint at other file that isn't principal? I'm look for a sentence like: b my_file#no_lin (by default it is only possible at current file, isn't?) I know I can : b postpone my_subr It is the more similar I could find, but I would like...
  9. grimbys

    Localization of a expresion ?

    Hi! I have a new problem :( Imagine (this is only a example, i'd like it was general): $er = &quot;(a) (b\w*) (b\w*) (c)&quot;; $word = &quot;d a b b c d a b b c d&quot;; while ($word =~ /($er)/g) { I want to know how many words are there before second b } How can I obtain the pos of ($4)...
  10. grimbys

    matching two regular expresion?

    I want to match this two expresions: (this is the phrase and no the expresion regular) (DET|The) (NUM|14) (PREP|of) (MONTH|January) with: The NUM of MONTH (of YEAR)? A global example: (TYPE | word) (TYPE | word) ... whith (TYPE |word )* Any idea? Thanks!
  11. grimbys

    failed boot!!! rootnoverify (hd0,0)

    Hi, this morning, when I was turn on my computer, I get this message: Booting 'DOS' rootnoverify(hd0,0) chainloader +1 Falta NTLDR // Not find NTLDR Press any key And My Windows XP failed boot! Do you know anything about it? How can I resolve the problem? Thanks you!
  12. grimbys

    Network with Windows XP Home?

    Hi! I tried mount a network with Win ME and Win XP Home. I created the disk of assistent of XP, and installed it at ME. I have the same work group on two computers, and the same user. My network is formed by a cable-modem that is connected to a hub where are connected my two computers. Intertnet...
  13. grimbys

    Can a image be modified by a select field?

    Hi! I have a image and a select field: <body> <p><img border=&quot;0&quot; src=&quot;1.jpg&quot; width=&quot;148&quot; height=&quot;180&quot;></p> <form name=&quot;form1&quot;> <p><select size=&quot;1&quot; name=&quot;foto_selec&quot;> <option selected value=&quot;1&quot;>first</option>...
  14. grimbys

    Strange loop!! why???

    Hi! we have a problem with decimal numbers. When we have next loops, we don't get the result expected for ($i = 0.001; $i <= 0.01 ;$i += 0.001) { print $i.&quot; &quot;; } print &quot;\n&quot;; # OUT: 0.001 0.002 0.003 0.004 0.005 0.006 0.007 0.008 0.009 WITHOUT 0.01!!! for ($i = 0.01; $i <=...

Part and Inventory Search

Back
Top