Componentes.Terceros.TRichView/12.0.4/Demos/DelphiUnicode/Editors/Editor 1/CPFrm.pas

33 lines
488 B
ObjectPascal
Raw Permalink Normal View History

unit CPFrm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls;
type
TfrmCP = class(TForm)
txtName: TEdit;
Label1: TLabel;
Label2: TLabel;
txtTag: TEdit;
lblStatus: TLabel;
btnCancel: TButton;
btnOk: TButton;
btnDelete: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmCP: TfrmCP;
implementation
{$R *.DFM}
end.