Last change
on this file since 1676 was 459, checked in by Kevin Toppenberg, 16 years ago |
Adding foia-cprs branch
|
File size:
1.0 KB
|
Rev | Line | |
---|
[459] | 1 | unit fOptionsSubscribe;
|
---|
| 2 |
|
---|
| 3 | interface
|
---|
| 4 |
|
---|
| 5 | uses
|
---|
| 6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
---|
| 7 | ExtCtrls, StdCtrls, ORFn;
|
---|
| 8 |
|
---|
| 9 | type
|
---|
| 10 | TfrmOptionsSubscribe = class(TForm)
|
---|
| 11 | pnlBottom: TPanel;
|
---|
| 12 | btnOK: TButton;
|
---|
| 13 | btnCancel: TButton;
|
---|
| 14 | bvlBottom: TBevel;
|
---|
| 15 | private
|
---|
| 16 | { Private declarations }
|
---|
| 17 | public
|
---|
| 18 | { Public declarations }
|
---|
| 19 | end;
|
---|
| 20 |
|
---|
| 21 | var
|
---|
| 22 | frmOptionsSubscribe: TfrmOptionsSubscribe;
|
---|
| 23 |
|
---|
| 24 | procedure DialogOptionsSubscribe(fontsize: integer; var actiontype: Integer);
|
---|
| 25 |
|
---|
| 26 | implementation
|
---|
| 27 |
|
---|
| 28 | {$R *.DFM}
|
---|
| 29 |
|
---|
| 30 | procedure DialogOptionsSubscribe(fontsize: integer; var actiontype: Integer);
|
---|
| 31 | // create the form and make it modal, return an action
|
---|
| 32 | var
|
---|
| 33 | frmOptionsSubscribe: TfrmOptionsSubscribe;
|
---|
| 34 | begin
|
---|
| 35 | frmOptionsSubscribe := TfrmOptionsSubscribe.Create(Application);
|
---|
| 36 | actiontype := 0;
|
---|
| 37 | try
|
---|
| 38 | with frmOptionsSubscribe do
|
---|
| 39 | begin
|
---|
| 40 | Font.Size := MainFontSize;
|
---|
| 41 | ShowModal;
|
---|
| 42 | actiontype := btnOK.Tag;
|
---|
| 43 | end;
|
---|
| 44 | finally
|
---|
| 45 | frmOptionsSubscribe.Release;
|
---|
| 46 | end;
|
---|
| 47 | end;
|
---|
| 48 |
|
---|
| 49 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.