52610.fb2
Caption = 'Italic'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsItalic]
ParentFont = False
TabOrder = 4
OnClick = Button2Click
end
end
object Memo1: TMemo
Left = 0
Top = 0
Width = 684
Height = 240
Align = alClient
ScrollBars = ssVertical
TabOrder = 1
end
end
// конец кода
// начало кода
unit EditStr;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, Buttons, ComCtrls;
type
TEditSt = class(TForm)
Panel1: TPanel;
Memo1: TMemo;
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
BitBtn3: TBitBtn;
Button1: TButton;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
EditSt: TEditSt;
implementation
{$R *.dfm}
procedure TEditSt.Button1Click(Sender: TObject);