Reply-To: "Sean Middledich" From: "Sean Middledich" Newsgroups: comp.os.msdos.djgpp References: <35B1977C DOT 8A1DACD2 AT jove DOT acs DOT unt DOT edu> Subject: Re: ScreenSaver? Date: Sun, 19 Jul 1998 14:54:26 -0400 Lines: 17 Organization: AwesomePlay Productions NNTP-Posting-Host: usr18-073.provide.net Message-ID: <35b241b6.0@news.provide.net> To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk If it was for MS-DOS, you would need to make it a TSR. This can be done using Interrupt 21h, function 31h or interrupt 27h. You then need tomoniter the keyboard interrupt ( 09h ). Exactly how that is done, I am unsure, but you should be able to find some examples on the net. As a note, hwoever, be aware thast if it is active while another program is running, there could be serious side effects if you are not careful. Also, some MS-DOS programs mostly games ) replace the standared keyboard handler, which may make your screen saver become active during play, not to mention the screen saver may seriously corrupt the video display. Tim Faehnle wrote in message <35B1977C DOT 8A1DACD2 AT jove DOT acs DOT unt DOT edu>... >What library would I need to make a screensaver? I'm thinking that it >would have to use some windows function or something. Is there a way >that I could do this? >