<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Comments for Random Images Screen Saver - a complete screen saver example</title>
<link rel="alternate" type="text/plain" href="http://dn.codegear.com/article/26652" title="Random Images Screen Saver - a complete screen saver example" />
<link rel="self" type="application/atom+xml" href="http://dn.codegear.com/article/26652/feed" title="Comments for Random Images Screen Saver - a complete screen saver example" />
<id>http://dn.codegear.com/article/26652</id>
<updated>2008-11-19T06:40:11-08:00</updated>
<entry>
<title>Random Images Screen Saver - a complete screen saver example</title>
<author>
<name>Craven Weasel</name>
<uri>http://threads.codegear.com/threads/threads.exe/userall?commentid=41191</uri>
</author>
<id>http://threads.codegear.com/threads/threads.exe/view?commentid=41191</id>
<updated>2008-06-15T03:38:29-07:00</updated>
<published>2008-06-15T03:38:29-07:00</published>
<summary>Random Images Screen Saver - a complete screen saver example</summary>
<content>http://cc.codegear.com/Item/15504</content>
</entry>
<entry>
<title>Random Images Screen Saver - Download Link does NOT work</title>
<author>
<name>Mike Moose</name>
<uri>http://threads.codegear.com/threads/threads.exe/userall?commentid=37817</uri>
</author>
<id>http://threads.codegear.com/threads/threads.exe/view?commentid=37817</id>
<updated>2004-11-09T15:27:36-08:00</updated>
<published>2004-11-09T15:27:36-08:00</published>
<summary>Random Images Screen Saver - Download Link does NOT work</summary>
<content>I realise that this is years after the article was written ....  But, as of 10-Nov-2004, the download link does NOT work.</content>
</entry>
<entry>
<title>Unnecessary code, but useful!</title>
<author>
<name>Ijon Tichy</name>
<uri>http://threads.codegear.com/threads/threads.exe/userall?commentid=32426</uri>
</author>
<id>http://threads.codegear.com/threads/threads.exe/view?commentid=32426</id>
<updated>2002-05-30T16:14:55-07:00</updated>
<published>2002-05-30T16:14:55-07:00</published>
<summary>Unnecessary code, but useful!</summary>
<content>In the PromptIfPasswordNeeded function of the ScreenSaverUtils.pas unit, it is not necessary to check for and obtain the 'Control Panel\Desktop\ScreenSaveUsePassword' value in the registry. The VerifyScreenSavePwd function in 'password.cpl' does this automatically for you. On the other hand, the registry code in the PromptIfPasswordNeeded function produces the correct behaviour on NT based machines (i.e. if NT then don't call the VerifyScreenSavePwd function), and so if you remove the registry code, you will need to check the OS yourself (with something like &quot;if Win32Platform = VER_PLATFORM_WIN32_NT then ...&quot;).This is a case of seemingly unnecessary Borland code turning out to be quite useful. :)</content>
</entry>
<entry>
<title>Random Images Screen Saver - SystemParametersInfo - a query</title>
<author>
<name>Mark Stevenson</name>
<uri>http://threads.codegear.com/threads/threads.exe/userall?commentid=28697</uri>
</author>
<id>http://threads.codegear.com/threads/threads.exe/view?commentid=28697</id>
<updated>2001-04-20T12:20:00-07:00</updated>
<published>2001-04-20T12:20:00-07:00</published>
<summary>Random Images Screen Saver - SystemParametersInfo - a query</summary>
<content>I am trying to create a screensaver using Delphi 4 ( I realise that this code won't compile under Delphi 4 but I needed inspiration ! ) and I find that it works fine on Windows '95 , when the saver is activated one copy of the program is loaded and all is well with the world . In Windows '98 however I find that dozens of copies are run over and over again . I was hoping that SystemParametersInfo(SPI_SCREENSAVERRUNNING,1,@dummy,0); was the line I needed but it crashes out , causing windows ( either '95 or '98 ) to tell me my program has caused an error and will be closed down . Strangely the closing SystemParametersInfo statement telling Windows that the saver is no longer running causes no problems . Hmm.....Also is there a similar command to SetCapture , for intercepting keypresses , whether a form has the focus or not ? I have tried the FAQs but no luck .</content>
</entry>
<entry>
<title>Random Images Screen Saver - Bug OnMouseMove Procedure </title>
<author>
<name>bereket tesfayohannes</name>
<uri>http://threads.codegear.com/threads/threads.exe/userall?commentid=28203</uri>
</author>
<id>http://threads.codegear.com/threads/threads.exe/view?commentid=28203</id>
<updated>2001-03-03T04:26:23-08:00</updated>
<published>2001-03-03T04:26:23-08:00</published>
<summary>Random Images Screen Saver - Bug OnMouseMove Procedure </summary>
<content>If you press the cancle button on the screen saver password dialog box after moving the mouse you might see a littel bug.It could be fix this way. 1 Add this declerations in the private scection            FMouseLock: Boolean; 2 Add this code on the FormCreate Procedure                       FMoseLock:=False; 3 In FormMouseMove procedure write the following code just   before a call to close procedure                      IF not FMouseLock then            begin               FMouseLock:=True;               Close;            end           else              FMouseLock:=False;                             </content>
</entry>
<entry>
<title>re: Random Images Screen Saver - a complete screen saver example</title>
<author>
<name>Corbin Dunn</name>
<uri>http://threads.codegear.com/threads/threads.exe/userall?commentid=27671</uri>
</author>
<id>http://threads.codegear.com/threads/threads.exe/view?commentid=27671</id>
<updated>2001-01-24T09:34:50-08:00</updated>
<published>2001-01-24T09:34:50-08:00</published>
<summary>re: Random Images Screen Saver - a complete screen saver example</summary>
<content>Yup...I looked into the problem. Our server sends out a style sheet, and it adds stuff to the &quot;pre&quot; tag. However, netscape &quot;forgets&quot; it is a pre tag. I emailed the fix to our web team (fixing the style sheet will fix all documents!). Thanks letting me know about the issue.</content>
</entry>
<entry>
<title>re: Random Images Screen Saver - a complete screen saver example</title>
<author>
<name>Fred Robinson</name>
<uri>http://threads.codegear.com/threads/threads.exe/userall?commentid=27647</uri>
</author>
<id>http://threads.codegear.com/threads/threads.exe/view?commentid=27647</id>
<updated>2001-01-22T12:59:29-08:00</updated>
<published>2001-01-22T12:59:29-08:00</published>
<summary>re: Random Images Screen Saver - a complete screen saver example</summary>
<content>The HTML that is included with the download looks OK in Netscape.When double-clicking on the file in the Explorer, NS complains that it can't find something (which happens every time I do this with any local HTML file), and the code snippets aren't surrounded with boxes but otherwise are formatted correctly.When loading the file in NS with File | Open Page, there is no message and the code snippets still look OK.Enough info for you? ;-)  Thanks for posting the article -- I've been wanting to do a screen saver in Delphi for some time.Fred</content>
</entry>
<entry>
<title>re: Random Images Screen Saver - a complete screen saver example</title>
<author>
<name>Corbin Dunn</name>
<uri>http://threads.codegear.com/threads/threads.exe/userall?commentid=27626</uri>
</author>
<id>http://threads.codegear.com/threads/threads.exe/view?commentid=27626</id>
<updated>2001-01-19T18:15:55-08:00</updated>
<published>2001-01-19T18:15:55-08:00</published>
<summary>re: Random Images Screen Saver - a complete screen saver example</summary>
<content>geez...that isn't good. I'll tell our web guys. Netscape doesn't handle pre tag's right, I guess. We are supposed to use a certain &quot;source code pretty maker&quot; program to generate our snipplets. I just cut and paste. Thanks for letting me know.</content>
</entry>
<entry>
<title>re: Random Images Screen Saver - a complete screen saver example</title>
<author>
<name>Fred Robinson</name>
<uri>http://threads.codegear.com/threads/threads.exe/userall?commentid=27624</uri>
</author>
<id>http://threads.codegear.com/threads/threads.exe/view?commentid=27624</id>
<updated>2001-01-19T12:08:45-08:00</updated>
<published>2001-01-19T12:08:45-08:00</published>
<summary>re: Random Images Screen Saver - a complete screen saver example</summary>
<content>Using Netscape 4.6, the lines of code in the boxes are flowed together, as if the line breaks are being ignored.It looks fine when using Internet Explorer.</content>
</entry>
<entry>
<title>re: Random Images Screen Saver - a complete screen saver example</title>
<author>
<name>Corbin Dunn</name>
<uri>http://threads.codegear.com/threads/threads.exe/userall?commentid=27621</uri>
</author>
<id>http://threads.codegear.com/threads/threads.exe/view?commentid=27621</id>
<updated>2001-01-19T08:55:28-08:00</updated>
<published>2001-01-19T08:55:28-08:00</published>
<summary>re: Random Images Screen Saver - a complete screen saver example</summary>
<content>Steve,I'm unsure of what you mean. You mean when you physically print the file, or is there something else wrong? </content>
</entry>
</feed>
