Message-ID: <000301bea336$5427ab80$84275da6@siegfried> From: "John L Meyer" To: References: <000101be9e5f$852db700$74a557ce AT 12 DOT titanlink DOT com> <01bea1b0$f899d620$010301cf AT server> Subject: Re: Autoexec.bat Date: Thu, 20 May 1999 16:55:02 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-Mimeole: Produced By Microsoft MimeOLE V5.00.2314.1300 Reply-To: djgpp AT delorie DOT com I think he wanted a solution that didn't involve programming. John Meyer USC Today Webmaster e-mail: jlmeyer AT rmi DOT net "If Bill Gates had a nickel for every time Windows crashed... Oh wait, he does!" ----- Original Message ----- From: iGOR KBACOB Newsgroups: comp.os.msdos.djgpp To: Sent: Tuesday, May 18, 1999 10:33 PM Subject: Re: Autoexec.bat > > > <000101be9e5f$852db700$74a557ce AT 12 DOT titanlink DOT com>... > > How do I add the lines into my autoexec.bat file? > > > > From Colby > > FILE *autoexec = fopen("c:/autoexec.bat"."r+t"); > fseek(autoexec,0L,SEEK_END); > fprintf(autoexec,"rem This is new line\n"); > ... > >