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 8159385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T17:53:34+00:00 2026-06-06T17:53:34+00:00

i am working on a custom component in Delphi -7 for which i have

  • 0

i am working on a custom component in Delphi -7 for which i have some published properties

   private
     { Private declarations }
     FFolderzip  ,Fimagezip,Ftextzip,FActivatezipComp   : Boolean;
     FMessagebo : string;
   published
    { Published declarations }
    {component Properties}
    {#1.Folder Zip}
    property ZipFolder : Boolean read FFolderzip  write FFolderzip  default False;
    {#2.Send imagezip ?}
    property ZipImage : Boolean read Fimagezip   write Fimagezip   default False;
    {#3.text files}
    property ZipText : Boolean read Ftextzip   write Ftextzip   default False;
    {#4.message}
    property ZipMessage: String read FMessagebo write FMessagebo ; 
    {#5.Activate }
    property ActivateZipper: Boolean read FActivatezipComp write  FActivatezipComp Default false;
   end;

When the user drops the component on the application, ActivateZipper properties give the use a option to activate/enable or deactivate/disable the component from executing.
The component creates a file
so in the constructor i have this, CreateATextFileProc will create the file in the application folder.So if i check in the constructor if the ActivateZipper is true or false..

i have a constructor

     constructor TcomProj.Create(aOwner: TComponent);
     begin
       inherited;
       if ActivateZipper then CreateATextFileProc;
     end;

The ActivateZipper is always false even if i set it to true in the object inspector.
How can the component be disabled from doing it working with published property?

  • 1 1 Answer
  • 0 Views
  • 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-06-06T17:53:36+00:00Added an answer on June 6, 2026 at 5:53 pm

    The constructor is too early. The design-time property values have not been streamed into the component yet. You need to wait until your component’s Loaded() method is called before you can then act on the values. If you create the component dynamically at run-time, you also need a property setter since there are no DFM values and thus Loaded() will not be called.

    type
      TcomProj = class(TComponent)
      private 
        ...
        procedure SetActivateZipper(Value: Boolean);
      protected
        procedure Loaded; override;
      published 
        property ActivateZipper: Boolean read FActivatezipComp write SetActivateZipper; 
      end; 
    
    procedure TcomProj.SetActivateZipper(Value: Boolean);
    begin
      if FActivatezipComp <> Value then
      begin
        FActivatezipComp := Value;
        if ActivateZipper and ((ComponentState * [csDesigning, csLoading, csLoading]) = []) then
          CreateATextFileProc; 
      end;
    end;
    
    procedure TcomProj.Loaded;
    begin
      inherited;
      if ActivateZipper then CreateATextFileProc; 
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a custom component built for a Joomla 2.5 website. It is working
I have custom Joomla(v1.5) component and currently working with component's router. The problem is
I am working on a custom Flex 4 component which is an aggregation of
I have some business objects written in Delphi with a custom scheme of database
I have a custom component I'm working on and I'm writing an import script
I have a DLL which takes care of custom drawing for some special glass
I have a working custom UserNamePasswordValidator that calls into my Oracle DB. This class
I have a nicely working custom CursorAdapter with customized ListView. This view allows the
I am working on a custom SSO solution and running into some problems with
I am working on a custom avatar system for a project, but I have

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.