Afficher une note de l'auteur dans vos composants
Constructor YourComponentCreate(AOwner:TComponent);
Begin
Inherited Create(AOwner);
{...}
if (csDesigning in componentstate) and not (csloading in componentstate) then
MessageDlg('Composant crée par Fobec ', mtInformation, [mbOK], 0);
End;