| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- unit ufrmAbout;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics,
- Controls, Forms, Dialogs, StdCtrls, uIFormShow, mybean.core.intf;
- type
- TfrmAbout = class(TForm, IShowAsModal, IFreeObject)
- Memo1: TMemo;
- private
- { Private declarations }
- public
- { Public declarations }
- function showAsModal: Integer; stdcall;
- procedure FreeObject; stdcall;
- end;
- var
- frmAbout: TfrmAbout;
- implementation
- {$R *.dfm}
- { TfrmAbout }
- procedure TfrmAbout.FreeObject;
- begin
- self.Free;
- end;
- function TfrmAbout.showAsModal: Integer;
- begin
- Result :=ShowModal;
- end;
- end.
|