Advertisement

Over 40 Experts attended the first Annual Core Conference! Take a look at what happened throughout the week...

2008 Core Conference

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Time Tested Perl Solutions: 801 - 825 of 1164
 
I've created an HTML page that displays a list of business categories. I want when a user clicks on one of the links to display more information. This page is created by the following per...
I have just started trying to learn perl/tk I have the following code ... #!/usr/bin/perl require Tk; use Tk; my $main = MainWindow->new(); my $lr_frame = $main->Frame(-background...
I have a PERL script that begins with the following: use Win32::OLE qw(in with); use Win32::OLE::Const 'Microsoft Excel'; When I convert my PERL script to an executable using pp -o file...
hi, I have a string that is $MAC_DA.$MAC_SA.$DATA and I need to attach $CRC to it. example : $MAC_DA = "001122334455"; # 6 bytes $MAC_SA = "000000000001"; # 6 bytes $DATA = "FFFF4FFF".(...
I want to kill a process given its name "notepad.exe", I know that there is a function called kill to do this, but its argument is processID rather than the process name. I know Perl c...
Hi, Is it possible for a user "A" to execute a perl script - that would read the crontab listings of another user "B"?? If so please explain how. Thanks in advance. sushiltanna
in python i have: x = struct.unpack('!L', i was wondering what the perl equivalent was $x = unpack("!L",  gives me an error
It is another question related to different versions of Perl. I used to be able to add additional libs through setting otherlibdirs in Config.pm in Perl version 5.6.1 such as otherlibdir...
what is difference between chop and chomp
You know how when you go to one of those dating sites and they have a "Search within 100 miles of {X} zipcode" searches? How do they do that? I need to make one and have no idea where to st...
Hello! I need dynamic command line output. Some programs do this: #perl test.cgi #I am running [=>      ] and it will print the next part like this: #perl test.cgi #I am running ...
Function should not save anything (no emails, dump everything), just a simple script that listens and communicates with the correct commands. Thanks in advanced
Hi there, When installing mod_perl 2.0.2 on a Red Linux Enterprise Server 3 workstation the following error occurs during the below installation steps: Step 1: perl Makefile.PL Next we ...
Problem in calling shell script from "CGI" Perl script : 1. We have a shell script which only does SCP (secure copy) of some files from one server to other. The shell script runs fine when...
HI I've been fiddling with perl for the last couple of days and am completely bit bamboozled by its intricacies - I'm finding this pretty hard as a perl newbie, and unfortunately my boss ha...
I am wondering whether it's possible to create and excel file using perl that contains cells with list validation.  These are basically drop down menus with values from cells that you select. ...
If I have a file which contains: # comments # comments server 1.2.3.4 server 5.6.7.8 more stuff here #END OF FILE How can I get the first IP address listed?  I'm looking for a...
I want to use LWP::Parallel::UserAgent to issue HTTP requests, and have the responses processed by a callback function. I want to process the whole response data at the same time, so I've set ...
Hi there, I'm writing a perl script, and need to pass some parameters over to a VB file called copyList.vbs.   In my perl script, I've tried using this line of code but am not sure if I'...
Here is the code I am using, I am looking for a way to get pass the "<-- MORE -->". The device happens to be a Cisco Pix Firewall, I know there are other cisco telnet perl modules, however th...
Hi,   I am trying to connect to the database froma perl script with the following command and i got the error below: DBI->connect( "dbi:Oracle:service_name", "$username", "$password",  {Auto...
Just wondering if anyone knows of a Perl/Tk method to manipulate the System Tray (Area that icons are mashed into, next to the clock) Just want to expand some programs to the tray, for mini...
A method in my base class needs to call a method that will be defined in the derived class. Similar to C++'s "virtual void" concept. How do I do this? The base class should not need to know...
hi Im trying to call GnuPG from perl to encrypt a file. Problem I have is that with GPG being interactive I cant just encrypt the file, i need to send it some further information. Anyone...
Hi,      I'm having a complete brain freeze.  Is there a way to dynamically import perl modules based on parameters?  For example, if I wanted to use a perl module, I would use the proper u...