Message-ID: <36E73049.65AD4E31@home.com> Date: Wed, 10 Mar 1999 18:54:01 -0800 From: "Edward F. Sowell" Organization: @Home Network X-Mailer: Mozilla 4.02 [en]C-AtHome0402 (Win95; U) MIME-Version: 1.0 To: Eli Zaretskii CC: djgpp AT delorie DOT com Subject: Re: Weird behavior with spawnl() References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp AT delorie DOT com > This is too complicated, since it involves argv[1] passed from > somewhere else. I suggest to throw together a simple test program > that calls spawnl with a known constant string, then post the results. > Thanks, Eli. As usual, your suggestions point me in the rigth direction. It worked with simple strings. That led me to discover other wonders in the world of special character quoting and escaping. I had been setting the command line for my test program in the provided field in the MS Developer studio WITH the \\ instead of \ because a portion of it was quoted. Well, the doubles are NOT needed there. The problem with the real program turned out to be another aspect of the / vs the \, mixed in with the MV CreateProcess() being absolutely unaware of Win 95 path... had to convert to short path. Thanks again. Ed