home *** CD-ROM | disk | FTP | other *** search
- unit Multhnt1;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls;
-
- type
- TForm1 = class(TForm)
- Button1: TButton;
- Button2: TButton;
- Button3: TButton;
- procedure FormCreate(Sender: TObject);
- private
- { Private-Deklarationen }
- public
- { Public-Deklarationen }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.FormCreate(Sender: TObject);
- Var I: Integer;
- S: String;
- begin
- for I := 0 to ComponentCount -1 do
- if Components[I] is TControl then
- With TControl(Components[I]) Do
- Begin
- S := Hint;
- While Pos('@',S) <> 0 Do
- S[Pos('@',S)] := #13;
- Hint := S;
- End;
-
- end;
-
- end.
-