Date: Mon, 21 Feb 2000 06:50:27 +0500 (MVT) From: Prashant TR X-Sender: prashant_tr AT midpec DOT com To: John cc: djgpp AT delorie DOT com Subject: Re: cursor In-Reply-To: <%RUr4.4203$Z5.112125@typhoon.nyroc.rr.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: dj-admin AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sun, 20 Feb 2000, John wrote: > What exactly am I supposed to type. I have tried that comand and no matter > what I do I still get a error or still see the cursor. Can someone please > just post a short 5-10 line code that gets rid of the cursor and writes > something so I can see exactly how to do it. Thanks #include #include int main() { printf("The cursor has vanished\n"); _setcursortype(_NOCURSOR); getch(); // Wait for a key. printf("There it comes\n"); _setcursortype(_NORMALCURSOR); getch(); return 0; }