Active Forums => QB64 Discussion => Topic started by: bobtheunplayer on January 31, 2019, 07:04:14 am
Title: Windows screensaver framework?
Post by: bobtheunplayer on January 31, 2019, 07:04:14 am
One of the fun things about QB64 has always been making fun graphics demo, or just non-sense that looks cool. What better way to enjoy the fruits of our efforts than by making it into a bona fide screensaver. Unfortunately that code is going to be rather system specific, so lets build for the most popular desktop OS.
I'm just jumping into this for the first time, so any help or insight anyone has with Windows specific non-screen-0 stuff (Sorry Pete) would be greatly appreciated.
I found a C# tutorial, so I'm going to get that working someday, time permitting, and I have zero C# experience, so it could take a long minute. https://www.harding.edu/fmccown/screensaver/screensaver.html
I feel like this might be something we would want to pursue as a community, and I wanted to start with you guys before I even open an editor.
Thanks, Bob
Title: Re: Windows screensaver framework?
Post by: SMcNeill on January 31, 2019, 07:11:26 am
This might be what you’re looking for: http://schoolfreeware.com/QBasic_Tutorial_58_-_Making_A_Screen_Saver_For_Windows_-_QB64.html
Title: Re: Windows screensaver framework?
Post by: SMcNeill on January 31, 2019, 07:43:29 am
This assumes that you're going to have pictures in the "C:\Users\Public\Pictures\" folder on your Windows PC. If you don't, then kindly change it to point to a directory where you do have pictures stored, and it'll then use those for you to create an image flipping screensaver.
Instructions:
1) Give it a name and compile it. 2) Find the compiled *.EXE in your QB64 folder and rename it to *.SCR to make it a screen saver. 3) You can now RIGHT CLICK on the SCR file in your QB64 folder, and use the INSTALL option to install your new screensaver.
Title: Re: Windows screensaver framework?
Post by: RhoSigma on January 31, 2019, 10:10:04 am
Hello bobtheunplayer, welcome to the forum...
For some more examples feel free to download and try my small Screen Blanker collection (see signature).
Title: Re: Windows screensaver framework?
Post by: bobtheunplayer on February 05, 2019, 09:59:33 am
@RhoSigma got some nice screen blankers there.
@SMcNeill, that seems too easy, I'll give it a go.