Re: system() problem in win98

2003-09-11 Thread sc00170
That's my command now, i haven't tried yet. I put the \n because it is written in the DDE options. I also use it under the win2k system. Without the /n i cannot open the doc. system("command.com /c start"," ",$filename_winword,"/n ","docs/$result-> {DOCUMENT_NAME}"); Quoting Rob Dixon <[EMAIL

Re: system() problem in win98

2003-09-11 Thread Rob Dixon
<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > i have the following function call > > $filename_winword="C:/Program Files/Microsoft Office/Office/WINWORD.EXE"; > > $result->{DOCUMENT_NAME}= the filename from the database. > > system ("start"," ",$filename_winword,"/n ", "docs/$res

RE: system() problem in win98

2003-09-11 Thread sc00170
does, because > otherwise how do you know there is a problem? > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 11, 2003 3:09 AM > To: Tim Johnson > Cc: Beau E. Cox; Perl Beginners > Subject: RE: system() problem in wi

RE: system() problem in win98

2003-09-11 Thread Tim Johnson
bject: RE: system() problem in win98 I don't own a win98 system. How to be sure if the command works under such a system. Any reference of what can replace the start command because it stuck unless i use it in my syntax. Quoting Tim Johnson <[EMAIL PROTECTED]>: > > I think wha

RE: system() problem in win98

2003-09-11 Thread sc00170
and lines for Win98 and Win2k. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 11, 2003 2:54 AM > To: Beau E. Cox > Cc: Perl Beginners > Subject: Re: system() problem in win98 > > > Do you say that the start

Re: system() problem in win98

2003-09-11 Thread Beau E. Cox
Yes; that's what I was trying to say! - Original Message - From: "Tim Johnson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "Beau E. Cox" <[EMAIL PROTECTED]> Cc: "Perl Beginners" <[EMAIL PROTECTED]> Sent: Wednesday, Septemb

RE: system() problem in win98

2003-09-11 Thread Tim Johnson
subtle differences in the command lines for Win98 and Win2k. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, September 11, 2003 2:54 AM To: Beau E. Cox Cc: Perl Beginners Subject: Re: system() problem in win98 Do you say that the start doesn't work

Re: system() problem in win98

2003-09-11 Thread sc00170
EMAIL PROTECTED]> > Sent: Wednesday, September 10, 2003 11:23 PM > Subject: system() problem in win98 > > > > > > i have the following function call > > > > $filename_winword="C:/Program Files/Microsoft Office/Office/WINWORD.EXE"; > > > &g

Re: system() problem in win98

2003-09-11 Thread Beau E. Cox
- Original Message - From: <[EMAIL PROTECTED]> To: "Perl Beginners" <[EMAIL PROTECTED]> Sent: Wednesday, September 10, 2003 11:23 PM Subject: system() problem in win98 > > i have the following function call > > $filename_winword="C:/Program Fi

system() problem in win98

2003-09-11 Thread sc00170
i have the following function call $filename_winword="C:/Program Files/Microsoft Office/Office/WINWORD.EXE"; $result->{DOCUMENT_NAME}= the filename from the database. system ("start"," ",$filename_winword,"/n ", "docs/$result->{DOCUMENT_NAME}"); Although it works great under Win2000 system, wh