Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 330861
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:43:15+00:00 2026-05-12T09:43:15+00:00

I try to use the following technique in order to enable/disable the shadow effect

  • 0

I try to use the following technique in order to enable/disable the shadow effect for a window: (The CreateParams is of course overriden. The TToolWindow descends from TForm).

procedure TToolWindow.CreateParams(var Params: TCreateParams); 
var
  LShadow: boolean;

begin
  inherited;

  if (Win32Platform = VER_PLATFORM_WIN32_NT)
    and ((Win32MajorVersion > 5)
    or ((Win32MajorVersion = 5) and (Win32MinorVersion >= 1))) then //Win XP or higher
      if SystemParametersInfo(SPI_GETDROPSHADOW, 0, @LShadow, 0) then
      begin
        if LShadow and HasShadow then
          Params.WindowClass.Style := Params.WindowClass.Style or CS_DROPSHADOW;
      end;
end;

While this works ok for the first instance of the TToolWindow class, the following instances keep the setting from the first instance, regardless of the value of HasShadow (which is a published property of the TToolWindow class).

How can I have different shadow settings on different instances of TToolWindow?

TIA

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T09:43:15+00:00Added an answer on May 12, 2026 at 9:43 am

    The VCL registers the necessary window classes for form classes on the fly, once each time the first instance of a given class is created. That explains why all secondary instances of your TToolWindow have the same shadow as the first instance, regardless of the HasShadow value. You are creating windows of the same window class, so they all have the same class style.

    What you could do is registering two classes, one with the drop shadow, the other without it. The VCL will register a new window class if the class name is different from the previously registered class.

    Something like this:

    procedure TToolWindow.CreateParams(var Params: TCreateParams); 
    var
      LShadow: boolean;
    begin
      inherited;
    
      if (Win32Platform = VER_PLATFORM_WIN32_NT)
        and ((Win32MajorVersion > 5)
        or ((Win32MajorVersion = 5) and (Win32MinorVersion >= 1))) 
      then begin
        //Win XP or higher
        if SystemParametersInfo(SPI_GETDROPSHADOW, 0, @LShadow, 0)
          and LShadow and HasShadow
        then begin
          Params.WindowClass.Style := Params.WindowClass.Style or CS_DROPSHADOW;
          StrLCopy(Params.WinClassName, 'TDelphiToolWindowWithShadow', 63);
        end else begin
          Params.WindowClass.Style := Params.WindowClass.Style and not CS_DROPSHADOW;
          StrLCopy(Params.WinClassName, 'TDelphiToolWindowNoShadow', 63);
        end;
      end;
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I try to use the following code: ArrayList<String> Map<String, String> Eclipse complains about both
I try use string as a regular expression pattern but I've following errors PHP
I use the following code try to create an array of string vectors, I
When I try to use SDL in my c++ program, I get the following:
I am getting the following exception when i try to use the fetchall method
I am getting the following error when i try to use a blue tooth
I'm getting the following error when I try to extend SalatDAO or use grater[T].asObject(x):
I'm trying to use the following technique described on symfony.com : http://symfony.com/doc/current/cookbook/testing/http_authentication.html in an
I usually use the following idiom when working with a Python dictionary: try: val
when I try to use the following code in the codebehind file, it runs

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.