You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
595 B
Plaintext
35 lines
595 B
Plaintext
12 months ago
|
unit u_op_memo;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||
|
Dialogs, BusinessSkinForm, StdCtrls, DBCtrls, bsSkinCtrls;
|
||
|
|
||
|
type
|
||
|
Tfrm_op_memo = class(TForm)
|
||
|
bsSkinButton5: TbsSkinButton;
|
||
|
DBMemo1: TDBMemo;
|
||
|
bsBusinessSkinForm1: TbsBusinessSkinForm;
|
||
|
procedure bsSkinButton5Click(Sender: TObject);
|
||
|
private
|
||
|
{ Private declarations }
|
||
|
public
|
||
|
{ Public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
frm_op_memo: Tfrm_op_memo;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
{$R *.dfm}
|
||
|
|
||
|
procedure Tfrm_op_memo.bsSkinButton5Click(Sender: TObject);
|
||
|
begin
|
||
|
close;
|
||
|
|
||
|
end;
|
||
|
|
||
|
end.
|