home *** CD-ROM | disk | FTP | other *** search
- unit Repdem06;
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
- StdCtrls, ExtCtrls, PrMemo, CB_MFunc;
-
- type
- Tdem06Form = class(TForm)
- View: TBitBtn;
- CancelBtn: TBitBtn;
- Memo1: TMemo;
- PrintMemo1: TPrintMemo;
- procedure ViewClick(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- dem06Form: Tdem06Form;
-
- implementation
-
- {$R *.DFM}
-
- procedure Tdem06Form.ViewClick(Sender: TObject);
- begin
- PrintMemo1.Execute;
- end;
-
- end.
-