NO HAY CÓDIGO FUENTE git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.TRichView@1 b34d35ef-135b-4489-b9d1-9916e9c25524
33 lines
488 B
ObjectPascal
33 lines
488 B
ObjectPascal
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.
|