32 lines
496 B
ObjectPascal
32 lines
496 B
ObjectPascal
|
|
|
||
|
|
|
||
|
|
unit EditFrm;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
|
||
|
|
Dialogs, StdCtrls, ExtCtrls, RVScroll, RichView, RVEdit, RVStyle;
|
||
|
|
|
||
|
|
type
|
||
|
|
TfrmEdit = class(TForm)
|
||
|
|
RVStyle1: TRVStyle;
|
||
|
|
RichViewEdit1: TRichViewEdit;
|
||
|
|
Panel1: TPanel;
|
||
|
|
Button1: TButton;
|
||
|
|
Button2: TButton;
|
||
|
|
private
|
||
|
|
{ Private declarations }
|
||
|
|
public
|
||
|
|
{ Public declarations }
|
||
|
|
end;
|
||
|
|
|
||
|
|
var
|
||
|
|
frmEdit: TfrmEdit;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
{$R *.dfm}
|
||
|
|
|
||
|
|
end.
|