I'm curious if there's any known methods for importing a DLL and calling its functions (without access to a .c, .h or anything else, just the DLL itself)
The DLL Methods are described below...
Dear Experts,
I think this question needs a fresh look:
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_23572645.html?cid=239#a22032755
500 points.
Dear Experts,
Anyone know why this is not working?
#!/usr/bin/perl -w
use DBI;
my $dsn = 'DBI:mysql:narmi2:localhost';
my $user = 'user';
my $pass = 'pass';
my $dbh = DBI->c...
I have some html files that have at some point a table, delimited in the code with
<tbody>.....</tbody>
I would like to extract the values in each column and each row. The rows are delim...
Hi
I am unable to install the lib ssh2. I am getting the following errors while installing it. I am currently having Windows xp OS, i am using cygwin to install this. I am using the libssh2...
I have a "HotKey" that'll spawn the window for my application, I was wondering how I might "hook" F2 to minimize/show the window, F3 to toggle transparancy and F4 for topmost.
The program i...
Hi experts:
Is there an easy way to break out of commandline output without waiting for input? Like a listener or something. This is on a linux system. The top command can do what I want to...
my script runs on SUN SOLARIS, i want to catch a signal (like SIGKILL or something) when i kill it using "KILL PID"
it means i want to write the dead time to LOG or do something useful before...
Hi everyone, hope you are all well :>)
Guys i have the following question.
I have a template file that I wish to use against a list of files.
Id like to be able to do the following in...
I've been using Bformmail, a modified version of Matt Wright's Formmail for some time. (see code attached for details and urls) Works great. I have recently tried to implement a checkbox in a ...
Hi all,
I am very new to programming in general so let me thank you all in advance for any help. I am trying to create a web app in Perl/CGI that will call certain test scripts in perl on ...
Hi everyone..
Is there a linux command that when run, can issue just the directory path only, and with that in mind, just the top level directory paths of a subdirectory of a given director...
I am having some issue with unicode here, because the first char of my string happen to be an unicode character which I had problem replacing them, I need to search and replace this unicode ch...
I need to send a large number of users a mail with some info in it on the pst that was detected and what they need to do with it. I can do this with sending them one mail at a time from a mail...
I have a text file that has rows like this:
Test|Test|55555555|Su|Super|\ |01/12/1988|||||||Super_Su@test.edu|2010|F|Su, Jones|555-555-5555|Parent/Child|
At the end of each row is a pipe I...
Does anyone know of a program (command line Preferable), module, or anyway to search and replace text in a PDF without using it like an editor. (FREE)
Basically I want to write a program (i...
I need get the value of both element value in perl, how do i do it???
End Result I should have:
123456789
abcdefghi
Hi,
i am using Net-Telnet-Cisco to communicate with various switches or routers.
I can communicate sucesfully but i face this problem:
when a router isnt accessible for any reason the pro...
Using ActiveState Perl 5.8 on Windows Server 2003:
About the system landscape:
I wrote a script to delete files more than a month old and was forced to use perl's "unlink" call since the ...
Hi,
I'm just trying to practice regexes. I made a dummy string with an age and address in it. I want to pull out the age and the building number from the string. So I'm really looking for a...
Hi experts,
How to read a xml file and read the data in xml in to an excel sheet??
I am trying to convert some Perl code to shell scripting for use with ksh on AIX 5.3.
Problem: I have a bunch of files that are missing an extension and need to find a method to rename them.
I figure the following so far, and please if a better suggestion is available feel f...
I need to install perl DBD::MySQL.
I have Active Perl v5.10.0 built for MSWin32-x86-multi-thread
I already installed DBI using ppm. But have some problem when I tried to install DBD::MySQ...
In Perl, if I open file for writing, will I see new content in the file before I close the file?