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.
55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
11 months ago
|
unit Unit1;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses
|
||
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
||
|
Dialogs, jpeg, ExtCtrls, bsSkinData, BusinessSkinForm, bsSkinCtrls,ShellApi;
|
||
|
|
||
|
type
|
||
|
TForm1 = class(TForm)
|
||
|
Image1: TImage;
|
||
|
bsBusinessSkinForm1: TbsBusinessSkinForm;
|
||
|
bsSkinData1: TbsSkinData;
|
||
|
bsStoredSkin1: TbsStoredSkin;
|
||
|
bsSkinButton1: TbsSkinButton;
|
||
|
bsSkinButton2: TbsSkinButton;
|
||
|
bsSkinButton5: TbsSkinButton;
|
||
|
bsSkinButton6: TbsSkinButton;
|
||
|
bsSkinButton7: TbsSkinButton;
|
||
|
bsSkinButton3: TbsSkinButton;
|
||
|
procedure bsSkinButton3Click(Sender: TObject);
|
||
|
procedure bsSkinButton1Click(Sender: TObject);
|
||
|
procedure FormShow(Sender: TObject);
|
||
|
private
|
||
|
{ Private declarations }
|
||
|
public
|
||
|
{ Public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
Form1: TForm1;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
uses Unit2;
|
||
|
|
||
|
{$R *.dfm}
|
||
|
|
||
|
procedure TForm1.bsSkinButton3Click(Sender: TObject);
|
||
|
begin
|
||
|
close;
|
||
|
end;
|
||
|
|
||
|
procedure TForm1.bsSkinButton1Click(Sender: TObject);
|
||
|
begin
|
||
|
ShellExecute(Application.Handle,nil,PChar(ExtractFilePath(Application.ExeName)+'data\InstDB.exe'),nil,nil,SW_NORMAL);
|
||
|
end;
|
||
|
|
||
|
procedure TForm1.FormShow(Sender: TObject);
|
||
|
begin
|
||
|
Image1.Picture.LoadFromFile(PChar(ExtractFilePath(Application.ExeName))+'wall.jpg');
|
||
|
end;
|
||
|
|
||
|
end.
|