If you configure the screensaver windows has a small preview-window where you can see the screensaver - that's what I want
Main Topics
Browse All TopicsHow can I scale my screensaver for the preview-window. If the parameter is /P I set the ParentWindow of my saver to the handle I get in parameter2. It works, but the preview is fullsized, i.e. I can not see elements outside the window. Thanks for your answers, Peter
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I did it long ago, through calling the following procedure:
procedure TFormMain.RunPreview(Targe
var PrevRect: TRect;
begin
//Application.ShowMainForm
while not IsWindowVisible(TargetHand
Application.ProcessMessage
GetWindowRect(TargetHandle
PrevRect.Right := PrevRect.Right - PrevRect.Left;
PrevRect.Bottom := PrevRect.Bottom - PrevRect.Top;
PrevRect.Left := 0; PrevRect.Top := 0;
Parent := FindControl(TargetHandle);
Top := 0; Left := 0;
Width := PrevRect.Right;
Height := PrevRect.Bottom;
DrawingCanvas := TCanvas.Create;
DrawingCanvas.Handle := GetDC(svrParam);
while IsWindowVisible(TargetHand
TimerTimer(self);
Sleep(Timer.Interval);
end;
ReleaseDC(TargetHandle, DrawingCanvas.Handle);
Application.Terminate;
end;
The main program in the .dpr file was as in the attachment.
Business Accounts
Answer for Membership
by: KoenVandemoortelPosted on 2009-11-04 at 05:35:52ID: 25739090
A screensaver is ment to cover the whole screen, that's the whole idea.
So, I think it's easier to change the resolution settings of your screen temporarily for this test.