How to Create a Gradient Filled Form
You can create a gradient filled form to make form that is more beautiful.
procedure TForm1.FormPaint(Sender: TObject);
var
Row, Ht: Word;
begin
Ht := (ClientHeight + 255) div 256;
for Row := 0 to 255 do
with Canvas do
begin
Brush.Color := RGB(Row, 100, 0);
FillRect(Rect(0, Row*Ht, ClientWidth, (Row+1) * Ht));
end;
end;
You can change the value of (Row, 100, 0) to suite your preferences.
Example:
(Row, 255, 0) or (Row, 100, 255)
Download: Source Code
How to Create Rounded Form procedure TForm1.FormCreat...
VCL unit based TSplitter extension. Provides extensions to t...
The PDJDBGridEx it is new generation of data award compo...
FastReport4 VCL is an add-on component that allows your appl...
The FormMagnet allows to magnetize your forms to an edges of...
Friday 02 Mar 2007 | Delphi Tutorial | Forms