unit PageControlExu;
{ This component removes the border at the pagecontrol(only when there are
one ore more tabs). }
interface
uses
Windows,Messages,Classes,CommCtrl,ComCtrls;
type
TPageControlEx=class(TPageControl)
private
{...}
protected
public
published
end;
procedure Register;
implementation
constructor TPageControlEx.Create(AOwner: TComponent);
begin
{...}
end;
procedure TPageControlEx.WndProc(var Message:TMessage);
begin
{...}
end;
procedure Register;
begin
end;
end.
========================================================================================
http://www.jandoggen.org http://www.beautyofpeople.com
http://www.puddingclub.nl
DH>
> Hi, I found this (parts left out). The Register procedure is empty. Why is
> it in there?
It looks like they deleted or moved the code inside (I assume to
register TPageControlEx) and never deleted the procedure.
You should be able to remove it.
--
Marc Rohloff [TeamB]
marc -at- marc rohloff -dot- com
Jan
"Marc Rohloff [TeamB]" <ma...@nospam.marcrohloff.com> schreef in bericht
news:19mknshk...@dlg.marcrohloff.com...