-
Recent Posts
Search Terms
Category Archives: Forms
How to Create Rounded Form
How to Create Rounded Form Incoming search terms:createroundrectrgn delphihow to make a round form from delphi formhow to create form in delphidelphi smooth round cornersdelphi roundeddelphi makeroundeddelphi make roundeddelphi form round bordersdelphi createroundrectrgncreateroundrectrgn delphi example
How to Create a Gradient Filled Form
You can create a gradient filled form to make form that is more beautiful.
Posted in Forms
Leave a comment
Hide the titlebar
Hide the titlebar. Incoming search terms:menyembunyikan titel di delphidelphi hide titlebardelphi 7 hide title formform hide di delphi 7getsystemmetrics(sm_cycaption) delphihide caption application delphihide close from bar title delphihow to hide tform titlebar delphi 7how to hide the titlebar in delphidelphi … Continue reading
Posted in Forms, Windows API
1 Comment
Hide the window caption
If you want to prevent the user to move a window you have to hide the caption. This is done by changing the window attributes in the FormCreate event. Its also possible to set the property BorderStyle to ‘bsNone’, but … Continue reading
Posted in Forms
Leave a comment
How to make a desktop screenshot?
function GetDesktopScreenShot:TBitmap; var Desktop:HDC; begin Result:= TBitmap.Create; Desktop:= GetDC(0); try try Result.PixelFormat := pf32bit; Result.Width := Screen.Width; Result.Height := Screen.Height; BitBlt(Result.Canvas.Handle,0,0, Result.Width, Result.Height, Desktop,0,0,SRCCOPY); Result.Modified := True; finally ReleaseDC(0,Desktop); end; except Result.Free; Result:=nil; end; end; procedure TForm1.Button1Click(Sender: TObject); begin Image1.Picture.Bitmap … Continue reading
Posted in Forms
Leave a comment