Jump to content
Fórum Script Brasil
  • 0

Tentando criar um IdFTP com ProgressBar no componente e processo de do


LucAlucard

Question

Bom dia família Script Brasil. Gostaria da ajuda de vocês pra conseguir herdar esse componente. O componente em teoria é simples... Eu herdei o IdFTP da palheta Indy. Depois de ter feito isso criei uma variavel ProgressBar e gerei os métodos de Get, Set para que ele possa pegar o ProgressBar selecionado pelo desenvolvedor. Mas não estou conseguindo encontrar a parte onde ele faz está o evento onWorkBegin; onWork; onWorkEnd do IdFTP para tentar dar um overrite e colocar mais coisas nesse evento... Alguém pode me ajudar por favor? O código até agora está assim:

unit NewIdFTP;

interface

uses
  SysUtils, Classes, IdBaseComponent, IdComponent, IdTCPConnection,
  IdTCPClient, IdFTP, ComCtrls;

type
  //Caso você precise procurar procure na unit "IDComponent"
  TNewFtpIdFTP = class(TIdFTP)
  private
    FProgressBar : TProgressBar;
    { Private declarations }
  protected
    procedure GetProgressBar (Sender : TObject);
    procedure SetProgressBar (Value : TProgressBar);
    { Protected declarations }
  public
    { Public declarations }
  published
    property ProgressBar: TProgressBar read FProgressBar write FProgressBar;
    { Published declarations }
  end;

procedure Register;

implementation

uses Math, StrUtils;

procedure Register;
begin
  RegisterComponents('Meus Componentes', [TNewFtpIdFTP]);
end;

{ TNewFtpIdFTP }


procedure TNewFtpIdFTP.GetProgressBar(Sender: TObject);
begin
 if Sender is TProgressBar then
   TProgressBar(Sender) := FProgressBar;
end;

procedure TNewFtpIdFTP.SetProgressBar(Value : TProgressBar);
begin
  FProgressBar := Value;
end;

end.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...