Sebatas Catatan
Form default ada title bar nya, tapi tidak bisa di geser / di drag unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs;type TForm1 = class(TForm) private { Private declarations } procedure WMSysCommand(var Msg: TWMSysCommand); message WM_SYSCOMMAND; public { Public declarations } end;var Form1: TForm1;implementation{$R *.dfm}procedure TForm1.WMSysCommand(var Msg: TWMSysCommand);begin if ((msg.CmdType and $FFF0) = SC_MOVE) then begin msg.Result:=0; exit; end; inherited;end;end.
Cool Social Media Sharing Touch Me Widget by Blogger Widgets
0 comments:
Post a Comment