Date: Wed, 4 Aug 1999 09:58:44 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: zidharta AT geocities DOT com cc: djgpp AT delorie DOT com Subject: Re: spawning anyone know how? In-Reply-To: <7o6msa$c2g$1@nnrp1.deja.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Tue, 3 Aug 1999 zidharta AT geocities DOT com wrote: > I wonder if anyone can explain to me how to use that function (spawnl()) It's described in the library docs. From the DOS prompt, type "info libc alpha spawn" and read there. > is it true that window95 using this techniques (spawning) to perform > multitasking effect ... ? Use `system', not `spawn', and invoke the other program via the Windows program START. Like this: system ("start myprog"); This runs myprog.exe in another DOS box. If you want to run it minimized, use "start /m myprog".