Unsubscribe

2005-05-18 Thread Brown, Jeremy
Title: Unsubscribe Jeremy Brown Database Administrator AgFirst Farm Credit Bank [EMAIL PROTECTED] ** N O T I C E ** The information contained in this transmission is intended for the exclusive use of the addressee(s) and may contain

Calling DTS GetExecutionErrorInfo method with by reference arguments of types other than variant.

2005-03-14 Thread Brown, Jeremy
I don't know if there is any way to do this in ASPerl. If so, some advice is appreciated. I have constructed a Perl script to create a DTS package. I'm trying to print the step errors returned by the GetExecutionErrorInfo method, and am having a bit of trouble. When researching MSDN, I came

SetErrorMode, Win32::API

2004-11-27 Thread Jeremy A
. -Jeremy A. here is info i found in a forum: how do i do this in perl -- Disabling the program crash

Win32 API -GetProcessTimes

2004-10-28 Thread Jeremy A
Thanks in advance for all your help, regards, Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

FileTimeToDosDateTime

2004-10-28 Thread Jeremy A
Hi Thanks for your response. I want to get the readable Dos date time from the cryptic CreationTime given by GetProcessTimes. The following is my code...and the output is not readable and is wrong. Thanks in advance, Jeremy A. use Win32::API; $pid = 3228; #processid - your process id goes here

Win32 API problem

2004-08-27 Thread Jeremy A
= $GetWindowThreadProcessId-Call($HWND,$PP); print $PP; Thanks in advance, regards, Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Perl and RC4: Understanding Extremely Compact Script

2004-08-19 Thread Jeremy Junginger
+ = 1)%=256])%=256,S,vec($_,$l++,8)^=$s[($s[$x]+$s[$y])%256]while$llength -Jeremy ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

writing a client-side activex control to be embedded in IE.

2004-07-06 Thread Jeremy A
in advance for all your help. Regards, Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

simplify duplicates algorithm

2004-06-26 Thread Jeremy A
|}a{|SPC|}test change it to {|TAB_1|}{|SPC_4|}this{|SPC_1|}is{|SPC_1|}a{|SPC_1|}test I have tried doing this many ways (including regex), but no luck. Your help is appreciated, Thanks in advance. Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED

Perl and Net::SNMP

2004-06-11 Thread Jeremy Junginger
contains: C:/Perl/lib C:/Perl/site/lib .) ... I look in c:\Perl\lib\net and sure enough, snmp.pm is not there. Any tips would be greatly appreciated. -Jeremy ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http

RE: network discovery

2004-06-11 Thread Jeremy A
track of each machines ip. let me revise my question: how do i discover all machines (ip/hostname) on the network, given, that i know all the mac addresses to the network cards of each machine. Thanks in advance. -Jeremy A. Jeremy A. said: how do i discover all machines (hostnames and ip's

Cool Regex Question!

2004-06-09 Thread Jeremy Junginger
, so I can store them as the base url for relative links? I'm having trouble visualizing it. Thanks! -Jeremy ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

network discovery

2004-06-09 Thread Jeremy A
hi all, how do i discover all machines (hostnames and ip's) on a lan with perl? your help is appreciated. thanks in advance. Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

process events

2004-06-01 Thread Jeremy A
one thread (monitoring more processes), it gives me the following error, Thread failed to start: Win32::OLE(0.1701) error 0x800401e4: Invalid syntax after character 0 in WinMgmts:// at D:\we6\cgi-bin\w24.pl line 24. Your help and advice is appreciated. Thanks in advance, Regards, Jeremy

compiling cgi scripts with perlapp

2004-05-22 Thread Jeremy A
, and if there is anything that I should be aware of when doing this. Thanks in advance for your replies and info. Regards, Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Private Variables in OOP

2004-04-09 Thread Jeremy A
Hi all, I have an perl oop problem. I want to manipulate/set a variable for one instance of an object without changing the same variable for all instances of an object. Thanks in advance for any help, Regards, Jeremy

perl OOP problem

2004-04-03 Thread Jeremy A
is greatly appreciated. -Jeremy A. code below my $n = Machine-new( HOSTS = 192.168.1.101); my $g = Machine-new( HOSTS = 192.168.1.108); while(1) { $g-host(); $n-host(); } package Machine; sub new() { my

Tk::HList refresh problem

2004-02-25 Thread Jeremy A
already exists at ...blahblahblah I suppose this problem has to do with the $hlist-itemCreate() and $hlist-add() routine. Thanks in advance for any help. Regards, Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED

passing subs and scope

2004-02-12 Thread Jeremy A
hi all, I have learned how to pass a sub as a parameter into another subroutine, then execute it. My problem is, how do execute the referenced sub, and inheret the variables of the calling sub? Thanks in advance for any help. Regards, Jeremy A. --Code--- sub writeline { my

socket,perlctrl,Glob error

2004-02-10 Thread Jeremy A
Hi all I have developed a perl control that creates a socket session. the socket is then returned to the program that called the control. I get a glob error. Thanks in advance for any help. Regards, Jeremy A. here is the code snippets: dll control code

perl proxy for browser

2004-02-03 Thread Jeremy A
, and so does internet explorer. What is wrong with this script? how can i get it to work? Thanks in advance for your help, Regards, Jeremy A. ---perl proxy code i found use strict; use IO::Socket; use IO::Select; my $proxyPort = 80; my

implement a simple Telnet like Daemon (protocol) in perl

2004-02-03 Thread Jeremy A
be hard.and there are alot of unusual console apps. Any Ideas, anyone? Thanks in advance for any help. Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

win32/linux socket communication. (i am going to hell)

2004-01-09 Thread Jeremy A
feel sick...i am starting to see thingsi think i am going to kill myself. so here is the two programs that are driving me mad. please help me, thanks in advance. Regards, Jeremy A. --linux server script--- $| = 1; use IO::Socket; $svr = IO::Socket::INET-new

RE: win32/linux socket communication. (update)

2004-01-07 Thread Jeremy A
on the win32 box, and the server script on the linux box. Tell me if it works and what distro of linux you are using. Thanks in advance, Regards, Jeremy A. The following are the client/server scripts. win32 client script use IO::Socket; $| = 1; my

packed data over tcp socket.

2004-01-04 Thread Jeremy A
implementing/instantiating a socket, using IO::Socket (IO::Socket::INET) , will this work for sending packed (binary) data? The implementation i want to use should be fully supported by both win32/linux. Your help and advice is appreciated. Thanks in advance. Regards, Jeremy

creating libraries

2003-12-22 Thread Jeremy A
, if there is such a thing.) Thanks in advance for your replies. Regards, Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

killing process by id

2003-12-20 Thread Jeremy A
Hi all, how do i kill a process when i only have it's pid? eg. kill(2,1072); does not work. Thanks in advance to your replies. Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: Redirecting STDOUT

2003-12-13 Thread Jeremy A
Hi again, I have changed my server solution to use perl 5.8 threads, instead of fork. It is set up for non-blocking sockets. It has a client that is non-blocking as well. my problem is that It still prints to STDOUT, not $client. Your help is appreciated. Thanks in advance. Regards, Jeremy

Re: Redirecting STDOUT, help please

2003-12-13 Thread Jeremy A
Hi again, I have changed my server solution to use perl 5.8 threads, instead of fork. It is set up for non-blocking sockets. It has a client that is non-blocking as well. my problem is that It still prints to STDOUT, not $client. Your help is appreciated. Thanks in advance. Regards, Jeremy

Re: Redirecting STDOUT from open.

2003-12-13 Thread Jeremy A
not told it to?? # my $inT = threads-create(\input,RH,$client); # threads are commented out. # my $outT = threads-create(\output,RH,$client); Thanks in advance for any help Regards Jeremy A. At 01:08 AM 12/13/2003, you wrote: Jeremy A wrote: Hi again, I have changed my server solution

open() problem

2003-12-13 Thread Jeremy A
in advance for your time and help. Regards, Jeremy Aiyadurai ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Win32::Process

2003-12-13 Thread Jeremy A
. use Win32::Process; use Cwd; my $cd = getcwd(); Win32::Process::Create( $obj, $cd.\\emia.exe, emia, 1, NORMAL_PRIORITY_CLASS, '.' ); - Thanks in Advance for any help. Regards, Jeremy

totally redirecting STDIN,STDOUT,STDERR from cmd.exe (prompt)

2003-12-07 Thread Jeremy A
Hi all, how do i go about totally redirecting STDIN,STDOUT,STDERR so i can use it through sockets, (eg. send (STDIN), recieve (STDOUT,STDERR)? Thanks in advance for all your help. Regards, Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL

MS-Dos and Win32 Console apps

2003-12-02 Thread Jeremy A
Hi all, is there any way to test if any given program is a classic MS-Dos ,Win32-Console or (non console)Windows GUI based application, using a perl script? Thanks in advance for any help and input. Regards, Jeremy A. ___ Perl-Win32-Users mailing

Auto-Detect read-write (simulate console) Help!

2003-11-27 Thread Jeremy A
for Jeremy #read Overwrite 't.exe' ? y #ok, we wait for input, once input is entered, we Created 't.exe

OOP and Vars

2003-10-30 Thread Jeremy A
variables and alot of subs per package. I hope you understand my problem. All help is appreciated, thanks in advance. Regards, Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman

Fw: Interact with IIS built-in session variables

2002-12-13 Thread Jeremy Kister
, --- Jeremy Kister www.jeremykister.com PGP: http://www.jeremykister.com/jeremy/public_key.asc --- - Original Message - From: Jeremy Kister [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, December 01, 2002 12

Fw: Interact with IIS built-in session variables

2002-12-01 Thread Jeremy Kister
involved anywhere my perl code. Any suggestions? Thanks again, --- Jeremy Kister www.jeremykister.com PGP: http://www.jeremykister.com/jeremy/public_key.asc --- -Original Message- From

ANNOUNCE: Emia = cross-platform SMTP/POP3 Component/Utility for creating web-mail systems.

2001-12-29 Thread Jeremy Aiyadurai
a full fledged webmail application, or on a small scale with limited budget or resources. You can download Emia and read the documentation at http://www.emia.web.com . Hope you appreciate my contribution and may you apply it to something of good use. Cheers, Jeremy Aiyadurai. P.S. Have a great

ANNOUNCE: new version of software (HelloMail) to be released.

2001-12-22 Thread Jeremy Aiyadurai
in java 1.3, and have compiled to an executable using Microsoft SDK for Java 4.0 (J++). I hope you will appreciate my contribution to the community. Thanks, And have a Merry Christmas Jeremy Aiyadurai. ([EMAIL PROTECTED]) ___ Perl-Win32-Users

RE: Scrolling text

2001-12-05 Thread Jeremy Mauro
You can try this one: http://www.lns.cornell.edu/~pvhp/perl.html In the field TK... There are some examples and all the spec of the TK... Regarding the scroll bar there is an example: http://www.lns.cornell.edu/~pvhp/ptk/Tk/UserGuide.html Hope it helps.. Jeremy -Original

perl DBI OBDC help please

2001-06-06 Thread Jeremy Aiyadurai
hello all, thanks for your help in the past. I am new to SQL and Perl development with SQL. I just want to clarify something: is it possible to set up a cgi script that can send information to an sql database server on a different host? and if so, will this piece of code work for this

Perl2exe compilation problem...please help!

2001-05-06 Thread Jeremy Aiyadurai
appreciated! thankyou Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Perl2exe compilation problem...please help!!

2001-05-06 Thread Jeremy Aiyadurai
: use Win32; use somemodule; use Constant; use Win32::Console; use Win32::Internet; use Win32::DriveInfo; use Term::ReadKey; use Win32::Process; #use strict; use Carp; use Cwd; Your help is always appreciated! thankyou Jeremy A. ___ Perl-Win32-Users

MIME::Base64 nmake install problems

2001-05-05 Thread Jeremy Aiyadurai
appreciated Jeremy A ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Win32::GUI-program problem

2001-04-23 Thread Jeremy Aiyadurai
. Thankyou Jeremy use Win32::GUI; use Win32::API; use Net::FTP; use Cwd; #@ARGV = file, 0 # mode (send/recieve),1 # mode (ascii/binary),2 # ftphost

Re: Win32::LookupAccountName in perl

2001-04-23 Thread Jeremy Blonde
I found this in the Mailing list archive a while ago. Hopefully the author will forgive me, I forgot to include his name. It should help you though. Jeremy sub SID_bin2text { my($bin) = @_; my($Revision, $SubAuthorityCount,@IdentifierAuthorities) = unpack(CCnnn, $bin

win32::process questions

2001-04-20 Thread Jeremy Aiyadurai
hi all I was wondering if some of you are able to anwser a couple of questions regarding the win32::process module. I am creating a ftp-client, I think i will have one script for issueing ftp commands and the other script for handling tasks, such as multiple connection download etc without

win32::process questions Help please!

2001-04-20 Thread Jeremy Aiyadurai
to use win32::process regarding my first question? Thank you Jeremy ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

win32::internet question and other questions

2001-04-20 Thread Jeremy Aiyadurai
hi how do i monitor a file transfer in progress? eg. the percentage how do reprint a line in the console without doing a system('cls') which happens to clear the entire screenthis is not what i want. thanx for your time jeremy ___ Perl-Win32

Bizarre SvTYPE [157] error when implementing fork() or Simple::proc

2001-04-19 Thread Jeremy Aiyadurai
sYour help will be greatly appreciated. thankyou Jeremy A. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Bizarre SvTYPE [157]error and perl crash when implementing fork()

2001-04-19 Thread Jeremy Aiyadurai
616) or (build 623) Your help and guidence is appreciated! Jeremy ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Photoshop

2001-04-10 Thread Jeremy Smith
with Perl? I've looked at adobe's website and they have some info, but it's not quite specific enough. Regards, Jeremy Smith ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

RE: A couple questions with windows and perl

2001-04-03 Thread Jeremy Blonde
'net use' command will use that by default. Just make sure the account has rights to connect to the share and everything should work. Hope this helps, Jeremy Blonde From: "Flynn, Timothy J" [EMAIL PROTECTED] To: "'Brian Gibson'" [EMAIL PROTECTED], "Perl-Win32

Re: detailed documentation for modules

2001-03-29 Thread Jeremy Blonde
IBM DeveloperWorks has some articles on XML parsing, I believe. I don't know how detailed they are (you may be looking for some heavier reading), but I thought I'd pass along the info. jb From: "TECKIES.COM Online Magazine" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: detailed

Re: Win32::OLE + Exchange mailboxes

2001-03-23 Thread Jeremy Blonde
. Thanks, Jeremy Blonde From: Ben Hall [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Win32::OLE + Exchange mailboxes Date: Fri, 23 Mar 2001 13:18:50 + (GMT+00:00) Jeremy - thanks for putting me on the right track. The following, I'm relieved to say, works: # Get first email print

Re: Win32::OLE + Exchange mailboxes

2001-03-23 Thread Jeremy Blonde
What happens if you run this same code in a (ACK!) VBScript? I wonder if it would display the correct information or not? If it does, then it may indeed indicate a problem with Win32::OLE, if it doesn't then it could be a problem with CDO? Jeremy Blonde And even simpler: these two lines

RE: Beautiful Code:RE: Perl MAPI attachment extraction script

2001-03-14 Thread Jeremy Blonde
at it. Thanks, Jeremy Blonde From: "Koshy,Mathew,RHODES,Information Services"[EMAIL PROTECTED] To: "'Jacob, Raymond A'" [EMAIL PROTECTED], Perl-Win32-Users Mailing List [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: RE: Beautiful Code:RE: Perl MAPI attachment extraction script Da

Re: Beautiful Code:RE: Perl MAPI attachment extraction script

2001-03-14 Thread Jeremy Blonde
Thanks! So if anyone is looking for a Perl programmer who's been known to do the impossible, let me know, I'm looking for a job. ;-) Jeremy Blonde Dear Jeremy: I am newbie but I must congratulate you on some well written and documented code. You should get the "$50,000"

[Perl-win32-users] Access Outlook/Exchang through MAPI

2001-03-12 Thread Jeremy Blonde
available resources. Perhaps I'm doing something wrong there. Thanks for your help, Jeremy Blonde [EMAIL PROTECTED] ___ Perl-win32-users mailing list [EMAIL PROTECTED] http://listserv.activestate.com/mailman/listi