AboutFrm.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
- unit AboutFrm;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, ExtCtrls, StdCtrls,Global, BusinessSkinForm, bsSkinCtrls, jpeg,shellapi,
- RxGIF;
- type
- TAboutForm = class(TForm)
- bsSkinButton1: TbsSkinButton;
- bsBusinessSkinForm1: TbsBusinessSkinForm;
- procedure FormShow(Sender: TObject);
- procedure bsSkinButton1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- AboutForm: TAboutForm;
- implementation
- uses RealMessengerImpl;
- {$R *.dfm}
- procedure TAboutForm.FormShow(Sender: TObject);
- var
- Major1,
- Major2,
- Minor1,
- Minor2: Integer;
- begin
- end;
- procedure TAboutForm.bsSkinButton1Click(Sender: TObject);
- begin
- //close;
- end;
- end.