RE: Open file with default application software on Windows ?

2004-10-07 Thread NYIMI Jose \(BMB\)
> -Original Message- > From: Jenda Krynicky [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 07, 2004 6:14 PM > To: [EMAIL PROTECTED] > Subject: RE: Open file with default application software on Windows ? > > > From: "NYIMI Jose \(BMB\)" <[

Re: Open file with default application software on Windows ?

2004-10-07 Thread Bee
> > > From: Jenda Krynicky [mailto:[EMAIL PROTECTED] > > > The system('start file.doc') only allows you to trigger the default > > > action defined for the file type. If you want to use the other > > > actions you might like use Win32::FileOp qw(ShellExecute); > > > ShellExecute 'Print' => 'c:\temp

RE: Open file with default application software on Windows ?

2004-10-07 Thread Jenda Krynicky
From: "NYIMI Jose \(BMB\)" <[EMAIL PROTECTED]> > > -Original Message- > > From: Jenda Krynicky [mailto:[EMAIL PROTECTED] > > The system('start file.doc') only allows you to trigger the default > > action defined for the file type. If you want to use the other > > actions you might like

RE: Open file with default application software on Windows ?

2004-10-07 Thread NYIMI Jose \(BMB\)
> -Original Message- > From: Jenda Krynicky [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 07, 2004 4:10 PM > To: [EMAIL PROTECTED] > Subject: Re: Open file with default application software on Windows ? > > > From: "Bee" <[EMAIL PROTECTED]&g

Re: Open file with default application software on Windows ?

2004-10-07 Thread David le Blanc
On Thu, 07 Oct 2004 16:10:29 +0200, Jenda Krynicky <[EMAIL PROTECTED]> wrote: > From: "Bee" <[EMAIL PROTECTED]> > > I am curious to know that if that is an existed module to open files > > with it's default application just like I double click on the file > > with mouse. and I do something just lik

Re: Open file with default application software on Windows ?

2004-10-07 Thread Jenda Krynicky
From: "Bee" <[EMAIL PROTECTED]> > I am curious to know that if that is an existed module to open files > with it's default application just like I double click on the file > with mouse. and I do something just like this with my code : > > use defaultOpen; > defOpen 'C:\temp.gif' or die "$!" ; # Th

Re: Open file with default application software on Windows ?

2004-10-07 Thread Bee
t;[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, October 07, 2004 8:24 PM Subject: RE: Open file with default application software on Windows ? > Bee wrote: > > Hello, > > > > I am curious to know that if that is an existed module to open files > >

RE: Open file with default application software on Windows ?

2004-10-07 Thread Bob Showalter
Bee wrote: > Hello, > > I am curious to know that if that is an existed module to open files > with it's default application just like I double click on the file > with mouse. and I do something just like this with my code : > > use defaultOpen; > defOpen 'C:\temp.gif' or die "$!" ; # Then the i

Re: Open file with default application software on Windows ?

2004-10-07 Thread Bee
Wow !! As you mentioned, thaz EXACTLY what I want :-)) Thousands Thanks !!! Bee - Original Message - From: "David le Blanc" <[EMAIL PROTECTED]> To: "Bee" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, October 07, 2004 7:11 PM Subject:

Re: Open file with default application software on Windows ?

2004-10-07 Thread David le Blanc
Search for a program called 'shellexec'. (use google). Shellexec does exactly what you want, but its a windows executable, so instead of calling defopen "something"; try system("shellexec something"); you should be able to download shellexec or an equivalent from many places. As for portable

Open file with default application software on Windows ?

2004-10-07 Thread Bee
Hello, I am curious to know that if that is an existed module to open files with it's default application just like I double click on the file with mouse. and I do something just like this with my code : use defaultOpen; defOpen 'C:\temp.gif' or die "$!" ; # Then the image will open with photos