Re: problem with IO::Socket and UDP

2001-04-27 Thread $Bill Luebkert
Jaime Teng wrote: > > I do have a good book on TCP/IP. Problem is, no Perl samples to follow. > Its like trying to learn Perl from a Pascal book. Sockets are sockets. The bigger problem is on Win32 where you don't have signals and such. It forces you into a single method of implementation. R

RE: is somebody using this machine ?

2001-04-27 Thread Kirk W. Batzer
If your using Win2000, look at "Policies". There are two major policy types: "User policies" which include logon/logoff scripts and a bunch of security and other stuff; "Computer policies" which include startup and shutdown and a whole bunch of other stuff. These policies can invoke any kind o

Re: problem with IO::Socket and UDP

2001-04-27 Thread Jaime Teng
>> >> Hi, >> >> >> >> How come this keeps on dying on me? >> >> >> >> my $LISTEN = new IO::Socket::INET(Listen => 10, LocalPort => 1812, Proto >> >=> >> >> 'udp' ); >> >> >> >> but if i change "Proto => 'udp'" into "Proto => 'tcp'" it runs now why >> >> it wont >> >> run on udp? >> >> >> >> re

Re: how to make a perl script a NT service

2001-04-27 Thread Jaime Teng
Hi, You can use SRVANY.EXE to hide your perl. Jaime At 01:12 PM 4/27/2001 -0700, Ted Zeng wrote: >Hi, I realize this topic came up a short while ago. >I looked at the solution people told here: PerlSvc. >It seems to me it is for a machine that doesn't >install Perl. > >I just want to turn a Pe

Re: is somebody using this machine ?

2001-04-27 Thread Ted W.
In the second approach you would probably be better off writing a screen saver in 'some other language' and have the screen saver evoke the perl script. The downside to that is that I am not sure that you can specify which, if any, screen saver runs when no one is logged in. For the first approa

How to Start Win32::Daemon on Windows 2000 (WAS how to make a perl script a NT service)

2001-04-27 Thread David M. Davisson
I have checked out this module and am having a bit of trouble getting it to work on Windows 2000. I can use it to install or remove a a service, but if I try to use the Service Control Manager to start the service or use net start service_name, I keep getting the same error: Error 1053: The serv

is somebody using this machine ?

2001-04-27 Thread luc Froehlicher
hello everyone. I'm writing an application to manage 3D pictures rendering over a network of machines.(I do that over my spare times and I'm a newbie on NT) Some machines are dedicated to this task 24 hours a day and everything works fine. Some are used during working hours and I'm trying to find

Qmail and Attachements

2001-04-27 Thread Bruce Lybbert
Have any of you used Qmail to send attachement. If so how did you get it to work. Bruce - Bruce Lybbert Phone (403)-625-1566 Fax (403) 802-8065 Voice Mail (403) 802-8065 ICQ 56221437 Web Site http://fea.ab.ca ___ Perl-Win32-Users ma

RE: how to make a perl script a NT service

2001-04-27 Thread Peter Eisengrein
There's gotta be a better way, but this is how I do it... use Win32::GUI; my $DOS = Win32::GUI::GetPerlWindow(); Win32::GUI::Hide($DOS); Even if it's not a GUI app, this at least hides the DOS window and leaves the app running in the backgound. -Pete -Original Message- From: Ted Zeng

RE: how to make a perl script a NT service

2001-04-27 Thread Robert Meyer
Check out Win32::Daemon at http://www.roth.net/perl _ Rob Meyer -Original Message- From: Ted Zeng [mailto:[EMAIL PROTECTED]] Sent: Friday, April 27, 2001 4:13 PM To: [EMAIL PROTECTED] Subject: how to make a perl script a NT service Hi, I realize this top

how to make a perl script a NT service

2001-04-27 Thread Ted Zeng
Hi, I realize this topic came up a short while ago. I looked at the solution people told here: PerlSvc. It seems to me it is for a machine that doesn't install Perl. I just want to turn a Perl script into a NT service, with Perl already installed. Is there another solution to this? Ted Zeng Ado

RE: How to find a drive exsistence

2001-04-27 Thread Walter Torres
Try this, see if it helps Walter > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of > Grant Hopwood > Sent: Thursday, April 26, 2001 9:55 AM > To: Asif Kaleem > Cc: [EMAIL PROTECTED] > Subject: Re: How to find a drive exsistence > > > -start- > >

RE: Perl/Tk

2001-04-27 Thread Casey Williams
Good point! BTW, is there a way to make buttons thinner, say, the same size height, as the default entry? I've tried playing with the height attributes to no avail. -Casey -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Rubinow, Larry Sent: Friday, Apr

RE: Installer for automatic software installation . . . .

2001-04-27 Thread Martin, James S.
Title: Re: Installer for automatic software installation . . . . Not sure about Oracle for windows in particular.. but.. Most apps these days use InstallShield, MSI, InstallWise, or some home-grown install routine.  The first 3 generally support silent installs via a command line switch and/o

RE: Perl/Tk

2001-04-27 Thread Rubinow, Larry
Casey Williams wrote: > Dunnigan,Jack [Edm] wrote: >> Why not create two frames side by each: a button frame and an >> entry frame. >> Then, add the buttons to the bottom of the button frame and >> add entries to >> the bottom of the entry frame. > Sure, that'll work too. But may not be as fl

Re: Net::SMTP

2001-04-27 Thread Charles Pelkey
If memory serves, NET::SMTP is part of the libnet package. --- Charles E. Pelkey C.P. Designs: http://cpdesigns.homeip.net/ [EMAIL PROTECTED] Personal Site: http://cpelkey.homeip.net/ [EMAIL PROTECTED]

RE: Perl/Tk

2001-04-27 Thread Dunnigan,Jack [Edm]
Ooopss that should have been "Entry" on the last line..you get the idea anyways. Why not create two frames side by each: a button frame and an entry frame. Then, add the buttons to the bottom of the button frame and add entries to the bottom of the entry frame. ## $mainframe->$m

RE: Perl/Tk

2001-04-27 Thread Casey Williams
Sure, that'll work too. But may not be as flexible depending on what your gonna do later. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Dunnigan,Jack [Edm] Sent: Friday, April 27, 2001 1:21 PM To: 'Adam Frielink' Cc: Perl Users List Subject: RE: Perl/T