Re: FW: [perl-win32-gui-users] Installable Small Software

2006-03-06 Thread Reini Urban
2006/3/6, Jeremy White <[EMAIL PROTECTED]>: > >NullSoft Installer is a free, and easily configureable installation > >system, along the lines of MSI/InnoSetup. I am not sure if InnoSetup > >supports patching, or even if you will need such functionality. NSIS is > >the short name for the project, lo

RE: [perl-win32-gui-users] slightly off topic: flushing TCP connections

2006-03-06 Thread Plum, Jason
There is a flag in perl to force autoflush on a pipe stream (which a socket is handled as such), which can be set by, I believe, $socket->autoflush(1); Give it a whirl, and be sure to check the IO::Socket Man page. Jason P. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTE

[perl-win32-gui-users] slightly off topic: flushing TCP connections

2006-03-06 Thread Steve Loughran
Sorry for the slightly off topic post, but I cant think of a better bunch of people to ask :) Yes, I have googled for this, and tried the options I found, but I am still getting no results... I have a TCP network connection between client and server which is working fine, but I am unable to ge

RE: FW: [perl-win32-gui-users] Installable Small Software

2006-03-06 Thread Jeremy White
NullSoft Installer is a free, and easily configureable installation system, along the lines of MSI/InnoSetup. I am not sure if InnoSetup supports patching, or even if you will need such functionality. NSIS is the short name for the project, located easily via google. Have you or anyone else used

FW: [perl-win32-gui-users] Installable Small Software

2006-03-06 Thread Plum, Jason
NullSoft Installer is a free, and easily configureable installation system, along the lines of MSI/InnoSetup. I am not sure if InnoSetup supports patching, or even if you will need such functionality. NSIS is the short name for the project, located easily via google. PerlApp is the most compreh

Re: [perl-win32-gui-users] (no subject)

2006-03-06 Thread Reini Urban
> From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > On Behalf Of Gowtham Prabu > Sent: Monday, 6 March 2006 6:43 PM > To: > Subject: [perl-win32-gui-users] (no subject) >I have created one small GUI based application through Win32::GUI > through Cygwin - perl on Windows. I want to c

RE: [perl-win32-gui-users] (no subject)

2006-03-06 Thread Chris Wearn
Not sure about using Cygwin perl… however using ActiveState Perl, if you have their PDK (Perl Dev Kit – Commercial), you could use PerlApp to create an executable file, and Perl MSI to create a setup file (.MSI). If you don’t have PDK, then you could use Innosetup (freeware) to create the setup

[perl-win32-gui-users] (no subject)

2006-03-06 Thread Gowtham Prabu
Hi Need Help !! I have created one small GUI based application through Win32::GUI through Cygwin - perl on Windows. I want to create an EXE file or setup file to install it on windows as what we do for other applications for VB. Kindly let me know is there any way to acheive this.