Web Development
delphi2.asc
Associated article: Examining Borland Delphi 2.0
Tags: Web Development
_EXAMINING DELPHI 2.0_
by Ted Faison
Listing One
TMyThread = class(TThread)
protected
procedure Execute; override;
public
constructor Create(your parameters} );
end;
Listing Two
type
TMyForm = class(TForm)
private
LengthyOperation: TMyThread;
end;
Listing Three
procedure TMyForm.StartButtonClick(Sender: TObject);
begin
LengthyOperation:= TMyThread....


