Registriert seit: 29. Mai 2002
37.621 Beiträge
Delphi 2006 Professional
|
23. Jan 2003, 08:30
Delphi-Quellcode:
procedure TForm1.FormCreate(Sender: TObject);
begin
SetWindowLong(Button1.Handle, GWL_STYLE, GetWindowLong(Button1.Handle, GWL_STYLE) or BS_MULTILINE);
Button1.Caption := 'Hallo'+#13#10+'du';
end;
Michael Ein Teil meines Codes würde euch verunsichern.
|