Download all you need here
Forms
[ Delphi ] – Make a desktop screenshot
May 4th
function GetScreenShot: TBitmap; var Desktop: HDC; begin Result := TBitmap.Create; Desktop := GetDC(0); try try More >
[ Delphi ] – Show a form in full-screen mode
May 4th
{
Make your application Full Screen.
Disable all of the system keys.
}
procedure TForm1.FormCreate(Sender: TObject);
var
HTaskbar: HWND;
OldVal: LongInt;
begin More >
[ Delphi ] – Show hints in the Statusbar
May 4th
private procedure MyHint(Sender: TObject); end; implementation procedure TForm1.FormCreate(Sender: TObject); begin Application.OnHint := MyHint; ShowHint := True; More >

