Contents: Main
|
Make your own Screen Saver This is alot easier than people think. Screen savers are simply .exe files renamed to .scr. There are only a few things you need to do. The Project should consist of a Blank form, a Set-up form and a module. Make the project start up from Sub Main. Do this by going to Tools | Options | Project and selecting the Start-up form as Sub Main. This Sub should look something like this: Sub main() This
is all you really need but this won't look very good. On
the setup form you can put all your parameters and save
them to an INI or the system registry. Declare Function ShowCursor Lib "USER32" (ByVal fShow As Integer) As Integer Then add these subs: Sub HideMouse() Sub ShowMouse() Call the HideMouse() from the Blankform's Load event and the ShowMouse() from the UnLoad. You can download an example screen saver here. |