unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TForm1 = class(TForm)
procedure FormPaint(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormPaint(Sender: TObject);
begin
with Canvas do
begin
Brush.Style := BSClear;
Font.Style := [FSBold]+[FSItalic];
Font.Name := 'Times new Romans';
Font.Size := 18;
Font.Color := ClBlue;
TextOut(2, 2, 'By Zephio');
Font.Color := ClBlack;
TextOut(8, 22, 'amateur.guide@gmail.com');
Font.Color := ClRed;
TextOut(14, 42, 'http://amateur-guide.blogspot.com');
end;
end;
end.
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TForm1 = class(TForm)
procedure FormPaint(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormPaint(Sender: TObject);
begin
with Canvas do
begin
Brush.Style := BSClear;
Font.Style := [FSBold]+[FSItalic];
Font.Name := 'Times new Romans';
Font.Size := 18;
Font.Color := ClBlue;
TextOut(2, 2, 'By Zephio');
Font.Color := ClBlack;
TextOut(8, 22, 'amateur.guide@gmail.com');
Font.Color := ClRed;
TextOut(14, 42, 'http://amateur-guide.blogspot.com');
end;
end;
end.
No comments:
Post a Comment