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
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)...
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...
Hi!
I've got a problem with CSS and Mozilla.
I want title attribute with files:
<span class = "A" title = "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...
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="NUMBER" XXX=YYY> 888 </SPAN>
...
When I put on mouse over 888, I'd like a small textbox (a comment / hint and not a edit...
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="NUMBER" XXX=YYY> 888 </SPAN>
...
When I put on mouse over 888, I'd like a small textbox (a comment / hint and not a edit...
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...
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...
Hi! I have a new problem :(
Imagine (this is only a example, i'd like it was general):
$er = "(a) (b\w*) (b\w*) (c)";
$word = "d a b b c d a b b c d";
while ($word =~ /($er)/g)
{
I want to know how many words are there before second b
}
How can I obtain the pos of ($4)...
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!
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!
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...
Hi! I have a image and a select field:
<body>
<p><img border="0" src="1.jpg" width="148" height="180"></p>
<form name="form1">
<p><select size="1" name="foto_selec">
<option selected value="1">first</option>...
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." ";
}
print "\n";
# 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 <=...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.