Registriert seit: 29. Mai 2002
37.621 Beiträge
Delphi 2006 Professional
|
Re: Breite der Titelleiste ändern
10. Jan 2008, 11:12
Delphi-Quellcode:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TForm1 = class(TForm)
private
{ Private-Deklarationen }
protected
procedure WMLButtonDown( var msg: TMsg); message WM_LBUTTONDOWN;
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.WMLButtonDown( var msg: TMsg);
begin
SetCursor(LoadCursor(0, IDC_SIZEALL));
SendMessage( Handle, WM_NCLBUTTONDOWN, HTCAPTION, msg.lParam);
end;
end.
Michael Ein Teil meines Codes würde euch verunsichern.
|
|
Zitat
|